more ast_copy_string conversions

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6073 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Russell Bryant
2005-07-10 22:56:21 +00:00
parent 80f67ad1fa
commit edbc500b77
12 changed files with 67 additions and 67 deletions

View File

@@ -1,11 +1,11 @@
/*
* Asterisk -- A telephony toolkit for Linux.
*
* Channel Management
* Privacy Routines
*
* Copyright (C) 1999, Mark Spencer
* Copyright (C) 1999 - 2005, Mark Spencer
*
* Mark Spencer <markster@linux-support.net>
* Mark Spencer <markster@digium.com>
*
* This program is free software, distributed under the terms of
* the GNU General Public License
@@ -44,7 +44,7 @@ int ast_privacy_check(char *dest, char *cid)
int res;
char key[256], result[256];
if (cid)
strncpy(tmp, cid, sizeof(tmp) - 1);
ast_copy_string(tmp, cid, sizeof(tmp));
ast_callerid_parse(tmp, &n, &l);
if (l) {
ast_shrink_phone_number(l);
@@ -80,7 +80,7 @@ int ast_privacy_set(char *dest, char *cid, int status)
int res;
char key[256];
if (cid)
strncpy(tmp, cid, sizeof(tmp) - 1);
ast_copy_string(tmp, cid, sizeof(tmp));
ast_callerid_parse(tmp, &n, &l);
if (l) {
ast_shrink_phone_number(l);