=== modified file 'src/auth/AclMaxUserIp.cc' --- src/auth/AclMaxUserIp.cc 2012-08-31 16:57:39 +0000 +++ src/auth/AclMaxUserIp.cc 2013-01-23 17:05:16 +0000 @@ -63,7 +63,7 @@ if (strcmp("-s", t) == 0) { debugs(28, 5, "aclParseUserMaxIP: Going strict"); - flags.strict = 1; + flags.strict = true; t = ConfigParser::strtokFile(); } === modified file 'src/auth/AclMaxUserIp.h' --- src/auth/AclMaxUserIp.h 2012-08-14 11:53:07 +0000 +++ src/auth/AclMaxUserIp.h 2013-01-23 17:05:16 +0000 @@ -73,9 +73,9 @@ int maximum; struct Flags { - Flags() : strict(0) {} + Flags() : strict(false) {} - unsigned int strict:1; + bool strict; } flags; };