summaryrefslogtreecommitdiff
path: root/channels
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2004-11-07 18:44:33 +0000
committerMark Spencer <markster@digium.com>2004-11-07 18:44:33 +0000
commit8aad8d2aa08ef9a432e4452686381a2fc7260a59 (patch)
tree573351559e20ba3df8add0a7ff088e33e277e106 /channels
parent134e6180c55d20b8dfa7068397936d0903d60a44 (diff)
Come into compliance with RFC3842
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4171 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels')
-rwxr-xr-xchannels/chan_sip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index 8cf486ab8..9a18c2374 100755
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -3877,7 +3877,7 @@ static int transmit_notify_with_mwi(struct sip_pvt *p, int newmsgs, int oldmsgs)
add_header(&req, "Content-Type", notifymime);
snprintf(tmp, sizeof(tmp), "Messages-Waiting: %s\r\n", newmsgs ? "yes" : "no");
- snprintf(tmp2, sizeof(tmp2), "Voicemail: %d/%d\r\n", newmsgs, oldmsgs);
+ snprintf(tmp2, sizeof(tmp2), "Voice-Message: %d/%d\r\n", newmsgs, oldmsgs);
snprintf(clen, sizeof(clen), "%d", (int)(strlen(tmp) + strlen(tmp2)));
add_header(&req, "Content-Length", clen);
add_line(&req, tmp);