From 8634ef9e4a57d128a295f1f114d2c97c32fa400c Mon Sep 17 00:00:00 2001 From: "Kevin P. Fleming" Date: Fri, 29 Apr 2005 17:00:33 +0000 Subject: 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 --- channels/iax2-provision.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'channels/iax2-provision.c') diff --git a/channels/iax2-provision.c b/channels/iax2-provision.c index 5feec89a7..f44dcba8c 100755 --- a/channels/iax2-provision.c +++ b/channels/iax2-provision.c @@ -287,7 +287,7 @@ static int iax_template_parse(struct iax_template *cur, struct ast_config *cfg, v = ast_variable_browse(cfg, s); while(v) { if (!strcasecmp(v->name, "port") || !strcasecmp(v->name, "serverport")) { - if ((sscanf(v->value, "%i", &x) == 1) && (x > 0) && (x < 65535)) { + if ((sscanf(v->value, "%d", &x) == 1) && (x > 0) && (x < 65535)) { if (!strcasecmp(v->name, "port")) { cur->port = x; foundportno = 1; @@ -313,7 +313,7 @@ static int iax_template_parse(struct iax_template *cur, struct ast_config *cfg, } else ast_log(LOG_WARNING, "Ignoring invalid codec '%s' for '%s' at line %d\n", v->value, s, v->lineno); } else if (!strcasecmp(v->name, "tos")) { - if (sscanf(v->value, "%i", &x) == 1) + if (sscanf(v->value, "%d", &x) == 1) cur->tos = x & 0xff; else if (!strcasecmp(v->value, "lowdelay")) cur->tos = IPTOS_LOWDELAY; -- cgit v1.2.3