[svn-commits] qwell: branch 1.6.2 r309255 - /branches/1.6.2/channels/chan_sip.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Wed Mar 2 13:53:49 CST 2011


Author: qwell
Date: Wed Mar  2 13:53:47 2011
New Revision: 309255

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=309255
Log:
Fix usage of "hasvoicemail=yes" and "mailbox=" in users.conf for SIP.

Since it's a duplicate, nothing is going to be done, so delme doesn't need to
be set at all.  Strangely, when this was added, this was being set to 1 in 1.6,
and 0 in trunk.

(issue AST-439)

Modified:
    branches/1.6.2/channels/chan_sip.c

Modified: branches/1.6.2/channels/chan_sip.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.6.2/channels/chan_sip.c?view=diff&rev=309255&r1=309254&r2=309255
==============================================================================
--- branches/1.6.2/channels/chan_sip.c (original)
+++ branches/1.6.2/channels/chan_sip.c Wed Mar  2 13:53:47 2011
@@ -24236,7 +24236,6 @@
 		AST_LIST_TRAVERSE(&peer->mailboxes, mailbox, entry) {
 			if (!strcmp(mailbox->mailbox, mbox) && !strcmp(S_OR(mailbox->context, ""), S_OR(context, ""))) {
 				duplicate = 1;
-				mailbox->delme = 1;
 				break;
 			}
 		}




More information about the svn-commits mailing list