fix typo. Bug #813

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1987 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Jeremy McNamara
2004-01-12 21:42:51 +00:00
parent d4af3ee3b6
commit aa03b29d77

View File

@@ -2551,7 +2551,7 @@ static int add_sdp(struct sip_request *resp, struct sip_pvt *p, struct ast_rtp *
if (x < AST_FORMAT_MAX_AUDIO) { if (x < AST_FORMAT_MAX_AUDIO) {
strncat(m, costr, sizeof(m) - strlen(m)); strncat(m, costr, sizeof(m) - strlen(m));
snprintf(costr, sizeof(costr), "a=rtpmap:%d %s/8000\r\n", codec, ast_rtp_lookup_mime_subtype(1, x)); snprintf(costr, sizeof(costr), "a=rtpmap:%d %s/8000\r\n", codec, ast_rtp_lookup_mime_subtype(1, x));
strncat(a, costr, sizeof(m) - strlen(a)); strncat(a, costr, sizeof(a) - strlen(a));
} else { } else {
strncat(m2, costr, sizeof(m2) - strlen(m2)); strncat(m2, costr, sizeof(m2) - strlen(m2));
snprintf(costr, sizeof(costr), "a=rtpmap:%d %s/90000\r\n", codec, ast_rtp_lookup_mime_subtype(1, x)); snprintf(costr, sizeof(costr), "a=rtpmap:%d %s/90000\r\n", codec, ast_rtp_lookup_mime_subtype(1, x));