summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorKevin P. Fleming <kpfleming@digium.com>2005-07-15 16:15:57 +0000
committerKevin P. Fleming <kpfleming@digium.com>2005-07-15 16:15:57 +0000
commitee568be647dea82a9b42d2a82c743c72c8e7226e (patch)
tree1396c38a20542090849695bd0923b37fc3813709 /apps
parent904beec507f7bfda93ddbb2ac2667f4a8cad53da (diff)
revert unneeded change and add comment to avoid it in the future
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6140 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps')
-rwxr-xr-xapps/app_rpt.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/app_rpt.c b/apps/app_rpt.c
index 584d4dfcf..57b43f552 100755
--- a/apps/app_rpt.c
+++ b/apps/app_rpt.c
@@ -379,7 +379,8 @@ static int myatoi(char *str)
int ret;
if (str == NULL) return -1;
- if (sscanf(str,"%d",&ret) != 1) return -1;
+ /* leave this %i alone, non-base-10 input is useful here */
+ if (sscanf(str,"%i",&ret) != 1) return -1;
return ret;
}