From: Timo Sirainen Date: Fri, 17 Apr 2009 21:58:28 +0000 (-0400) Subject: Code cleanup: Don't use __ prefix in header #defines. X-Git-Tag: 2.0.alpha1~914 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e37422f7fd015be33ea7cdf48b4044f51bd13cf5;p=thirdparty%2Fdovecot%2Fcore.git Code cleanup: Don't use __ prefix in header #defines. --HG-- branch : HEAD --- diff --git a/src/config/common.h b/src/config/common.h index afdc06fbcb..646f3cd2e0 100644 --- a/src/config/common.h +++ b/src/config/common.h @@ -1,5 +1,5 @@ -#ifndef __COMMON_H -#define __COMMON_H +#ifndef COMMON_H +#define COMMON_H #include "lib.h" diff --git a/src/config/config-connection.h b/src/config/config-connection.h index e73fa7f040..38dfe50f7d 100644 --- a/src/config/config-connection.h +++ b/src/config/config-connection.h @@ -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 --git a/src/config/config-parser.h b/src/config/config-parser.h index d565747347..db088050ce 100644 --- a/src/config/config-parser.h +++ b/src/config/config-parser.h @@ -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 --git a/src/login-common/login-settings.h b/src/login-common/login-settings.h index c8109b3a46..5f48f03bc5 100644 --- a/src/login-common/login-settings.h +++ b/src/login-common/login-settings.h @@ -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;