aboutsummaryrefslogtreecommitdiffstats
path: root/srv.c
diff options
context:
space:
mode:
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)