mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-19 11:42:27 +00:00
don't use '%i' at all, since we have no current use cases that need non base-10 parsing (bug #4110)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5533 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
2
cli.c
2
cli.c
@@ -583,7 +583,7 @@ static int handle_debuglevel(int fd, int argc, char *argv[])
|
||||
char *filename = "<any>";
|
||||
if ((argc < 3) || (argc > 4))
|
||||
return RESULT_SHOWUSAGE;
|
||||
if (sscanf(argv[2], "%i", &newlevel) != 1)
|
||||
if (sscanf(argv[2], "%d", &newlevel) != 1)
|
||||
return RESULT_SHOWUSAGE;
|
||||
option_debug = newlevel;
|
||||
if (argc == 4) {
|
||||
|
Reference in New Issue
Block a user