summaryrefslogtreecommitdiff
path: root/srv.c
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2005-07-10 22:56:21 +0000
committerRussell Bryant <russell@russellbryant.com>2005-07-10 22:56:21 +0000
commitedbc500b7734ec5d8aff00d928984902bf65608f (patch)
tree922450cc41923990ec190243f4948def77780abf /srv.c
parent80f67ad1fa8c7301ce234bc7459fd90c2c825523 (diff)
more ast_copy_string conversions
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6073 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'srv.c')
-rwxr-xr-xsrv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/srv.c b/srv.c
index 572f1c263..f7d23533b 100755
--- a/srv.c
+++ b/srv.c
@@ -65,7 +65,7 @@ static int parse_srv(unsigned char *host, int hostlen, int *portno, unsigned cha
if (option_verbose > 3)
ast_verbose( VERBOSE_PREFIX_3 "parse_srv: SRV mapped to host %s, port %d\n", repl, ntohs(srv->portnum));
if (host) {
- strncpy(host, repl, hostlen - 1);
+ ast_copy_string(host, repl, hostlen);
host[hostlen-1] = '\0';
}
if (portno)