]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Author: Christos Tsantilas <chtsanti@users.sourceforge.net>
authorAmos Jeffries <squid3@treenet.co.nz>
Fri, 3 Apr 2009 20:29:19 +0000 (09:29 +1300)
committerAmos Jeffries <squid3@treenet.co.nz>
Fri, 3 Apr 2009 20:29:19 +0000 (09:29 +1300)
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.

src/ACLExtUser.h

index 89e6002fb6d18355187575ef72fbba05931b610a..9cde914e350f4a730897f0a8f3e86ef43fd5317b 100644 (file)
@@ -33,8 +33,9 @@
  * Copyright (c) 2003, Robert Collins <robertc@squid-cache.org>
  */
 
-#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 */