[asterisk-commits] kmoore: branch kmoore/bridge_construction-cel_bridging r389079 - /team/kmoore...

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Sat May 18 16:01:12 CDT 2013


Author: kmoore
Date: Sat May 18 16:01:09 2013
New Revision: 389079

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=389079
Log:
Do some cleanup to reduce branch diff

Modified:
    team/kmoore/bridge_construction-cel_bridging/main/cel.c

Modified: team/kmoore/bridge_construction-cel_bridging/main/cel.c
URL: http://svnview.digium.com/svn/asterisk/team/kmoore/bridge_construction-cel_bridging/main/cel.c?view=diff&rev=389079&r1=389078&r2=389079
==============================================================================
--- team/kmoore/bridge_construction-cel_bridging/main/cel.c (original)
+++ team/kmoore/bridge_construction-cel_bridging/main/cel.c Sat May 18 16:01:09 2013
@@ -977,7 +977,7 @@
 	struct stasis_message *message)
 {
 	struct stasis_cache_update *update = stasis_message_data(message);
-	if (update->type == ast_channel_snapshot_type()) {
+	if (ast_channel_snapshot_type() == update->type) {
 		struct ast_channel_snapshot *old_snapshot;
 		struct ast_channel_snapshot *new_snapshot;
 		size_t i;
@@ -1147,7 +1147,6 @@
 		return -1;
 	}
 
-
 	if (do_reload() || ast_cli_register(&cli_status)) {
 		return -1;
 	}




More information about the asterisk-commits mailing list