]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Author: Christos Tsantilas <chtsanti@users.sourceforge.net>
authorAmos Jeffries <squid3@treenet.co.nz>
Fri, 27 Mar 2009 21:47:43 +0000 (10:47 +1300)
committerAmos Jeffries <squid3@treenet.co.nz>
Fri, 27 Mar 2009 21:47:43 +0000 (10:47 +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/acl/ExtUser.h

index fa4294f15a41442c69b17b1e21016a716cec8d57..aed77dbfdd4ee162cc2f84f63daede4dfbc95b28 100644 (file)
@@ -32,8 +32,8 @@
  * 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/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 */