summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xchannels/iax2-parser.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/channels/iax2-parser.c b/channels/iax2-parser.c
index f0721c4a6..fbb4d0155 100755
--- a/channels/iax2-parser.c
+++ b/channels/iax2-parser.c
@@ -77,7 +77,7 @@ static void dump_string(char *output, int maxlen, void *value, int len)
maxlen--;
if (maxlen > len)
maxlen = len;
- ast_copy_string(output, value, maxlen);
+ strncpy(output, value, maxlen);
output[maxlen] = '\0';
}
@@ -92,7 +92,7 @@ static void dump_prefs(char *output, int maxlen, void *value, int len)
if (maxlen > len)
maxlen = len;
- ast_copy_string(output, value, maxlen);
+ strncpy(output, value, maxlen);
output[maxlen] = '\0';
ast_codec_pref_convert(&pref, output, total_len, 0);