aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_setcidnum.c
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-07-14 07:34:34 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-07-14 07:34:34 +0000
commit4e18ef688947854313b99f35aa30c0e7d8ae29cd (patch)
tree54b0d7240765bc43ef378f171a536e6bc7d206d9 /apps/app_setcidnum.c
parent59d780973e0c1aab681be9dcba1baa2706caf92f (diff)
Merge rgagnon's pedantic string changes (apps n-z) (bug #2038)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@3429 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps/app_setcidnum.c')
-rwxr-xr-xapps/app_setcidnum.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_setcidnum.c b/apps/app_setcidnum.c
index 9aef3bacb..b96330ec5 100755
--- a/apps/app_setcidnum.c
+++ b/apps/app_setcidnum.c
@@ -73,7 +73,7 @@ static int setcallerid_exec(struct ast_channel *chan, void *data)
strncpy(newcid, n, sizeof(newcid) - 1);
}
} else
- strncpy(newcid, tmp, sizeof(newcid));
+ strncpy(newcid, tmp, sizeof(newcid) - 1);
ast_set_callerid(chan, !ast_strlen_zero(newcid) ? newcid : NULL, anitoo);
LOCAL_USER_REMOVE(u);
return res;