[asterisk-commits] mattf: trunk r85444 - /trunk/channels/chan_zap.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Thu Oct 11 12:17:59 CDT 2007


Author: mattf
Date: Thu Oct 11 12:17:58 2007
New Revision: 85444

URL: http://svn.digium.com/view/asterisk?view=rev&rev=85444
Log:
Let's hard code this until I fix it

Modified:
    trunk/channels/chan_zap.c

Modified: trunk/channels/chan_zap.c
URL: http://svn.digium.com/view/asterisk/trunk/channels/chan_zap.c?view=diff&rev=85444&r1=85443&r2=85444
==============================================================================
--- trunk/channels/chan_zap.c (original)
+++ trunk/channels/chan_zap.c Thu Oct 11 12:17:58 2007
@@ -10970,7 +10970,7 @@
 
 		blockstr[2] = '\0';
 
-		snprintf(statestr, sizeof(statestr), "%s", tmp->inservice ? "In Service" : "Out of Service");
+		snprintf(statestr, sizeof(statestr), "%s", "In Service");
 
 		ast_cli(a->fd, FORMAT, tmps, tmp->exten, tmp->context, tmp->language, tmp->mohinterpret, blockstr, statestr);
 		tmp = tmp->next;




More information about the asterisk-commits mailing list