mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-06 12:36:58 +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:
@@ -1571,7 +1571,7 @@ static int load_config(void)
|
||||
} else
|
||||
parkingtime = parkingtime * 1000;
|
||||
} else if (!strcasecmp(var->name, "parkpos")) {
|
||||
if (sscanf(var->value, "%i-%i", &start, &end) != 2) {
|
||||
if (sscanf(var->value, "%d-%d", &start, &end) != 2) {
|
||||
ast_log(LOG_WARNING, "Format for parking positions is a-b, where a and b are numbers at line %d of parking.conf\n", var->lineno);
|
||||
} else {
|
||||
parking_start = start;
|
||||
|
Reference in New Issue
Block a user