[svn-commits] mnicholson: trunk r856 - /trunk/channels/chan_mobile.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Wed Apr 8 15:01:47 CDT 2009


Author: mnicholson
Date: Wed Apr  8 15:01:43 2009
New Revision: 856

URL: http://svn.digium.com/svn-view/asterisk-addons?view=rev&rev=856
Log:
Don't panic on an unknown message.  Just ignore it and move on.

Modified:
    trunk/channels/chan_mobile.c

Modified: trunk/channels/chan_mobile.c
URL: http://svn.digium.com/svn-view/asterisk-addons/trunk/channels/chan_mobile.c?view=diff&rev=856&r1=855&r2=856
==============================================================================
--- trunk/channels/chan_mobile.c (original)
+++ trunk/channels/chan_mobile.c Wed Apr  8 15:01:43 2009
@@ -3495,7 +3495,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