aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_rpt.c
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2005-07-15 16:15:57 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2005-07-15 16:15:57 +0000
commit2bbd57c0d681332c9bb23f386052020b0b37ccfc (patch)
tree1396c38a20542090849695bd0923b37fc3813709 /apps/app_rpt.c
parent6b622ff869389c7569e5d925b730a20dec7b239a (diff)
revert unneeded change and add comment to avoid it in the future
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@6140 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps/app_rpt.c')
-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;
}