--- embedaddon/sudo/common/atobool.c 2012/02/21 16:23:02 1.1 +++ embedaddon/sudo/common/atobool.c 2013/07/22 10:46:11 1.1.1.3 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2010 Todd C. Miller + * Copyright (c) 2010-2012 Todd C. Miller * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above @@ -17,7 +17,6 @@ #include #include -#include #include #ifdef STDC_HEADERS @@ -39,10 +38,13 @@ #endif /* HAVE_STRINGS_H */ #include "missing.h" +#include "sudo_debug.h" int atobool(const char *str) { + debug_decl(atobool, SUDO_DEBUG_UTIL) + switch (*str) { case '0': case '1': @@ -77,5 +79,5 @@ atobool(const char *str) return 0; break; } - return -1; + debug_return_int(-1); }