# HG changeset patch # User Timo Sirainen # Date 1240005508 14400 # Node ID 3c8e0e094139dac3efcbb60f8508a29363da3c7c # Parent 40607877c3f9fa059e0b2a6a31fd00bb5b2a2b36 Code cleanup: Don't use __ prefix in header #defines. diff -r 40607877c3f9 -r 3c8e0e094139 src/config/common.h --- a/src/config/common.h Fri Apr 17 17:20:24 2009 -0400 +++ b/src/config/common.h Fri Apr 17 17:58:28 2009 -0400 @@ -1,5 +1,5 @@ -#ifndef __COMMON_H -#define __COMMON_H +#ifndef COMMON_H +#define COMMON_H #include "lib.h" diff -r 40607877c3f9 -r 3c8e0e094139 src/config/config-connection.h --- a/src/config/config-connection.h Fri Apr 17 17:20:24 2009 -0400 +++ b/src/config/config-connection.h Fri Apr 17 17:58:28 2009 -0400 @@ -1,5 +1,5 @@ -#ifndef __CONFIG_CONNECTION_H -#define __CONFIG_CONNECTION_H +#ifndef CONFIG_CONNECTION_H +#define CONFIG_CONNECTION_H enum config_dump_flags { CONFIG_DUMP_FLAG_HUMAN = 0x01, diff -r 40607877c3f9 -r 3c8e0e094139 src/config/config-parser.h --- a/src/config/config-parser.h Fri Apr 17 17:20:24 2009 -0400 +++ b/src/config/config-parser.h Fri Apr 17 17:58:28 2009 -0400 @@ -1,5 +1,5 @@ -#ifndef __CONFIG_PARSER_H -#define __CONFIG_PARSER_H +#ifndef CONFIG_PARSER_H +#define CONFIG_PARSER_H void config_parse_file(pool_t dest_pool, ARRAY_TYPE(const_string) *dest, const char *path, const char *service); diff -r 40607877c3f9 -r 3c8e0e094139 src/login-common/login-settings.h --- a/src/login-common/login-settings.h Fri Apr 17 17:20:24 2009 -0400 +++ b/src/login-common/login-settings.h Fri Apr 17 17:58:28 2009 -0400 @@ -1,5 +1,5 @@ -#ifndef __LOGIN_SETTINGS_H -#define __LOGIN_SETTINGS_H +#ifndef LOGIN_SETTINGS_H +#define LOGIN_SETTINGS_H struct login_settings { const char *login_dir;