From: Ralf S. Engelschall Date: Sat, 5 May 2001 19:56:17 +0000 (+0000) Subject: Use different namespace for internal defines. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=de473f0203cca53769ae3d999eef7f8f76a8012b;p=thirdparty%2Fapache%2Fhttpd.git Use different namespace for internal defines. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@89027 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/mod_ssl.h b/mod_ssl.h index 4681b788e0a..71b1506ecec 100644 --- a/mod_ssl.h +++ b/mod_ssl.h @@ -61,8 +61,8 @@ trying to perfect the art of never finishing something.'' -- Rob Hartill */ -#ifndef MOD_SSL_H -#define MOD_SSL_H 1 +#ifndef __MOD_SSL_H__ +#define __MOD_SSL_H__ /* * Optionally enable the experimental stuff, but allow the user to @@ -702,4 +702,4 @@ void ssl_util_thread_setup(void); #endif /* XXX */ -#endif /* MOD_SSL_H */ +#endif /* __MOD_SSL_H__ */ diff --git a/ssl_expr.h b/ssl_expr.h index a17dfd0cb00..5f4805ba740 100644 --- a/ssl_expr.h +++ b/ssl_expr.h @@ -58,8 +58,8 @@ */ /* ``May all your PUSHes be POPed.'' */ -#ifndef SSL_EXPR_H -#define SSL_EXPR_H +#ifndef __SSL_EXPR_H__ +#define __SSL_EXPR_H__ #ifndef FALSE #define FALSE 0 @@ -133,4 +133,4 @@ extern char *ssl_expr_get_error(void); extern ssl_expr *ssl_expr_make(ssl_expr_node_op, void *, void *); extern BOOL ssl_expr_eval(request_rec *, ssl_expr *); -#endif /* SSL_EXPR_H */ +#endif /* __SSL_EXPR_H__ */ diff --git a/ssl_util_ssl.h b/ssl_util_ssl.h index 87341dc4594..a67d8de180b 100644 --- a/ssl_util_ssl.h +++ b/ssl_util_ssl.h @@ -57,8 +57,8 @@ * ==================================================================== */ -#ifndef SSL_UTIL_SSL_H -#define SSL_UTIL_SSL_H +#ifndef __SSL_UTIL_SSL_H__ +#define __SSL_UTIL_SSL_H__ /* * Determine SSL library version number @@ -114,4 +114,4 @@ char *SSL_SESSION_id2sz(unsigned char *, int); #endif /* XXX */ -#endif /* SSL_UTIL_SSL_H */ +#endif /* __SSL_UTIL_SSL_H__ */ diff --git a/ssl_util_table.h b/ssl_util_table.h index d25e12f2aa8..9f3385de918 100644 --- a/ssl_util_table.h +++ b/ssl_util_table.h @@ -80,8 +80,8 @@ * without express or implied warranty. */ -#ifndef SSL_UTIL_TABLE_H -#define SSL_UTIL_TABLE_H +#ifndef __SSL_UTIL_TABLE_H__ +#define __SSL_UTIL_TABLE_H__ #if 0 /* XXX */ @@ -188,4 +188,4 @@ extern int table_entry_info(table_t *table_p, table_entry_t *entry_p #endif /* XXX */ -#endif /* ! SSL_UTIL_TABLE_H */ +#endif /* __SSL_UTIL_TABLE_H__ */