From b7e6d89aa23372a6a6d647bf6d3bfe3192e4c519 Mon Sep 17 00:00:00 2001 From: kpfleming 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: http://svn.digium.com/svn/asterisk/trunk@5533 f38db490-d61c-443f-a65b-d21fe96a405b --- pbx.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pbx.c') diff --git a/pbx.c b/pbx.c index 79a903480..68c0a55eb 100755 --- a/pbx.c +++ b/pbx.c @@ -1057,7 +1057,7 @@ void pbx_retrieve_variable(struct ast_channel *c, const char *var, char **ret, c snprintf(workspace, workspacelen, "%s", c->uniqueid); *ret = workspace; } else if (c && !strcmp(var, "HANGUPCAUSE")) { - snprintf(workspace, workspacelen, "%i", c->hangupcause); + snprintf(workspace, workspacelen, "%d", c->hangupcause); *ret = workspace; } else if (c && !strcmp(var, "ACCOUNTCODE")) { strncpy(workspace, c->accountcode, workspacelen - 1); @@ -5261,7 +5261,7 @@ static void wait_for_hangup(struct ast_channel *chan, void *data) struct ast_frame *f; int waittime; - if (!data || !strlen(data) || (sscanf(data, "%i", &waittime) != 1) || (waittime < 0)) + if (!data || !strlen(data) || (sscanf(data, "%d", &waittime) != 1) || (waittime < 0)) waittime = -1; if (waittime > -1) { ast_safe_sleep(chan, waittime * 1000); -- cgit v1.2.3