]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
use false, not zero
authorAlan T. DeKok <aland@freeradius.org>
Wed, 31 Aug 2016 13:47:26 +0000 (09:47 -0400)
committerAlan T. DeKok <aland@freeradius.org>
Wed, 31 Aug 2016 14:26:27 +0000 (10:26 -0400)
src/lib/token.c

index 3907908a162d091d48842ccc811854c1f27f1680..3b82d1edb5781ea24e2c36a4cf796bed06de02f6 100644 (file)
@@ -369,7 +369,7 @@ FR_TOKEN getstring(char const **ptr, char *buf, int buflen, bool unescape)
                return gettoken(ptr, buf, buflen, unescape);
        }
 
-       return getthing(ptr, buf, buflen, 0, fr_tokens, unescape);
+       return getthing(ptr, buf, buflen, false, fr_tokens, unescape);
 }
 
 /*