aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-11-07 18:44:33 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-11-07 18:44:33 +0000
commitd6a41d64fa3d28ea6289eb92a9ff25f1fec323f2 (patch)
tree573351559e20ba3df8add0a7ff088e33e277e106
parentba6bf065a5bd2601ee2f9c50cc4bf28ff7967eda (diff)
Come into compliance with RFC3842
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@4171 f38db490-d61c-443f-a65b-d21fe96a405b
-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);