mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-18 07:48:14 +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:
@@ -1996,7 +1996,7 @@ int reload_config(void)
|
||||
else
|
||||
capability &= ~format;
|
||||
} else if (!strcasecmp(v->name, "tos")) {
|
||||
if (sscanf(v->value, "%i", &format)) {
|
||||
if (sscanf(v->value, "%d", &format)) {
|
||||
tos = format & 0xff;
|
||||
} else if (!strcasecmp(v->value, "lowdelay")) {
|
||||
tos = IPTOS_LOWDELAY;
|
||||
|
||||
Reference in New Issue
Block a user