From: Christos Tsantilas Date: Wed, 25 Mar 2009 11:09:58 +0000 (+0200) Subject: Fix the wrong "ifndef" in the beggining of the ExtUser.h file. X-Git-Tag: SQUID_3_2_0_1~1102 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a260430e2aad870be74243b9623a21d4b885b675;p=thirdparty%2Fsquid.git Fix the wrong "ifndef" in the beggining of the ExtUser.h file. The old "SQUID_ACLIDENT_H" refers to the include file "acl/Ident.h" causing problems when both files included in a source file. --- diff --git a/src/acl/ExtUser.h b/src/acl/ExtUser.h index fa4294f15a..aed77dbfdd 100644 --- a/src/acl/ExtUser.h +++ b/src/acl/ExtUser.h @@ -32,8 +32,8 @@ * Copyright (c) 2003, Robert Collins */ -#ifndef SQUID_ACLIDENT_H -#define SQUID_ACLIDENT_H +#ifndef SQUID_EXTUSER_H +#define SQUID_EXTUSER_H #include "acl/Acl.h" #include "acl/Checklist.h" @@ -70,4 +70,4 @@ private: MEMPROXY_CLASS_INLINE(ACLExtUser) /**DOCS_NOSEMI*/ -#endif /* SQUID_ACLIDENT_H */ +#endif /* SQUID_EXTUSER_H */