]> granicus.if.org Git - sudo/commitdiff
Log an error for invalid boolean strings.
authorTodd C. Miller <Todd.Miller@courtesan.com>
Wed, 20 Jan 2016 22:34:00 +0000 (15:34 -0700)
committerTodd C. Miller <Todd.Miller@courtesan.com>
Wed, 20 Jan 2016 22:34:00 +0000 (15:34 -0700)
lib/util/strtobool.c

index 755501cdc7fba4f79429eecddb8ccc7398cce2ba..c3b70ceb4a1cbac64b6643c0b7be1e312e5b3b6a 100644 (file)
@@ -70,5 +70,8 @@ sudo_strtobool_v1(const char *str)
                debug_return_int(0);
            break;
     }
+    sudo_debug_printf(SUDO_DEBUG_ERROR|SUDO_DEBUG_LINENO,
+       "invalid boolean value \"%s\"", str);
+
     debug_return_int(-1);
 }