[Asterisk-cvs] asterisk/channels chan_sip.c,1.774,1.775

malcolmd at lists.digium.com malcolmd at lists.digium.com
Thu Jul 7 15:42:52 CDT 2005


Update of /usr/cvsroot/asterisk/channels
In directory localhost.localdomain:/tmp/cvs-serv15829/channels

Modified Files:
	chan_sip.c 
Log Message:
Hardcode urgent messages option in Voice-Message to 0


Index: chan_sip.c
===================================================================
RCS file: /usr/cvsroot/asterisk/channels/chan_sip.c,v
retrieving revision 1.774
retrieving revision 1.775
diff -u -d -r1.774 -r1.775
--- chan_sip.c	6 Jul 2005 01:45:23 -0000	1.774
+++ chan_sip.c	7 Jul 2005 19:51:33 -0000	1.775
@@ -4563,7 +4563,7 @@
 	add_header(&req, "Content-Type", default_notifymime);
 
 	snprintf(tmp, sizeof(tmp), "Messages-Waiting: %s\r\n", newmsgs ? "yes" : "no");
-	snprintf(tmp2, sizeof(tmp2), "Voice-Message: %d/%d\r\n", newmsgs, oldmsgs);
+	snprintf(tmp2, sizeof(tmp2), "Voice-Message: %d/%d (0/0)\r\n", newmsgs, oldmsgs);
 	snprintf(clen, sizeof(clen), "%d", (int)(strlen(tmp) + strlen(tmp2)));
 	add_header(&req, "Content-Length", clen);
 	add_line(&req, tmp);




More information about the svn-commits mailing list