]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
slen always < 0
authorNick Porter <nick@portercomputing.co.uk>
Tue, 16 Aug 2022 07:21:59 +0000 (08:21 +0100)
committerNick Porter <nick@portercomputing.co.uk>
Tue, 16 Aug 2022 07:21:59 +0000 (08:21 +0100)
src/lib/util/value.c

index 4e2588d7990a80d2e7fc05da9bed9b85c636e3c3..53568bc6ecb22c06125b9e4bd18331fe7b6dd134 100644 (file)
@@ -4826,7 +4826,7 @@ parse:
                 *      For barewords we also allow 0 for false and any other
                 *      integer value for true.
                 */
-               if ((slen < 0) && (!rules->escapes)) {
+               if (!rules->escapes) {
                        int64_t stmp;
                        uint64_t utmp;