[svn-commits] mnicholson: branch 1.6.2 r1031 - /branches/1.6.2/channels/chan_mobile.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Fri Oct 16 09:58:28 CDT 2009


Author: mnicholson
Date: Fri Oct 16 09:58:23 2009
New Revision: 1031

URL: http://svnview.digium.com/svn/asterisk-addons?view=rev&rev=1031
Log:
Continue processing after encountering an unknown AT message instead of terminating the connection.

Modified:
    branches/1.6.2/channels/chan_mobile.c

Modified: branches/1.6.2/channels/chan_mobile.c
URL: http://svnview.digium.com/svn/asterisk-addons/branches/1.6.2/channels/chan_mobile.c?view=diff&rev=1031&r1=1030&r2=1031
==============================================================================
--- branches/1.6.2/channels/chan_mobile.c (original)
+++ branches/1.6.2/channels/chan_mobile.c Fri Oct 16 09:58:23 2009
@@ -3345,7 +3345,7 @@
 			break;
 		case AT_UNKNOWN:
 			ast_debug(1, "[%s] ignoring unknown message: %s\n", pvt->id, buf);
-			goto e_cleanup;
+			break;
 		case AT_PARSE_ERROR:
 			ast_debug(1, "[%s] error parsing message\n", pvt->id);
 			goto e_cleanup;




More information about the svn-commits mailing list