From: Amos Jeffries Date: Fri, 3 Apr 2009 20:29:19 +0000 (+1300) Subject: Author: Christos Tsantilas X-Git-Tag: SQUID_3_0_STABLE14~19 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=83464f73c30e4e7d507a7753b2c887da133e8904;p=thirdparty%2Fsquid.git Author: Christos Tsantilas 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/ACLExtUser.h b/src/ACLExtUser.h index 89e6002fb6..9cde914e35 100644 --- a/src/ACLExtUser.h +++ b/src/ACLExtUser.h @@ -33,8 +33,9 @@ * Copyright (c) 2003, Robert Collins */ -#ifndef SQUID_ACLIDENT_H -#define SQUID_ACLIDENT_H +#ifndef SQUID_EXTUSER_H +#define SQUID_EXTUSER_H + #include "ACL.h" #include "ACLChecklist.h" #include "ACLData.h" @@ -69,4 +70,4 @@ private: MEMPROXY_CLASS_INLINE(ACLExtUser) -#endif /* SQUID_ACLIDENT_H */ +#endif /* SQUID_EXTUSER_H */