summaryrefslogtreecommitdiff
path: root/acl.c
diff options
context:
space:
mode:
authorKevin P. Fleming <kpfleming@digium.com>2005-04-29 17:00:33 +0000
committerKevin P. Fleming <kpfleming@digium.com>2005-04-29 17:00:33 +0000
commit8634ef9e4a57d128a295f1f114d2c97c32fa400c (patch)
treed331e5cecc9b0a3c2d3c3e29adbc134c1d3d0fe2 /acl.c
parentbef7a3ea37af59a729f83a4f4e2789761220d80f (diff)
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
Diffstat (limited to 'acl.c')
-rwxr-xr-xacl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/acl.c b/acl.c
index 47edeb0f2..6e8c553c0 100755
--- a/acl.c
+++ b/acl.c
@@ -150,7 +150,7 @@ struct ast_ha *ast_append_ha(char *sense, char *stuff, struct ast_ha *path)
nm++;
}
if (!strchr(nm, '.')) {
- if ((sscanf(nm, "%i", &x) == 1) && (x >= 0) && (x <= 32)) {
+ if ((sscanf(nm, "%d", &x) == 1) && (x >= 0) && (x <= 32)) {
y = 0;
for (z=0;z<x;z++) {
y >>= 1;