aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-07-14 07:48:47 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-07-14 07:48:47 +0000
commitcfff02bc04a1a713437a89ff75e2d00126c0d845 (patch)
treee7e8a7e95247c92034b7edef8f5f5f9d94b25ded
parent65ae377f3de37edbcb16041701b36a45c4ff65f6 (diff)
Oops forgot one (bug #2038)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@3431 f38db490-d61c-443f-a65b-d21fe96a405b
-rwxr-xr-xapps/app_setcidname.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_setcidname.c b/apps/app_setcidname.c
index c73af9a43..ee430911b 100755
--- a/apps/app_setcidname.c
+++ b/apps/app_setcidname.c
@@ -72,7 +72,7 @@ static int setcallerid_exec(struct ast_channel *chan, void *data)
strncpy(newcid, l, 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;