[asterisk-commits] bmd: branch group/newcdr r118870 - /team/group/newcdr/main/cel.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Wed May 28 20:01:29 CDT 2008


Author: bmd
Date: Wed May 28 20:01:28 2008
New Revision: 118870

URL: http://svn.digium.com/view/asterisk?view=rev&rev=118870
Log:
making these synonymous after getting frustrated that they're not the same. I figure now's my chance before people use it

Modified:
    team/group/newcdr/main/cel.c

Modified: team/group/newcdr/main/cel.c
URL: http://svn.digium.com/view/asterisk/team/group/newcdr/main/cel.c?view=diff&rev=118870&r1=118869&r2=118870
==============================================================================
--- team/group/newcdr/main/cel.c (original)
+++ team/group/newcdr/main/cel.c Wed May 28 20:01:28 2008
@@ -327,49 +327,49 @@
 	switch (eventtype)
 	{
 	case CEL_CHANNEL_START:
-		return "EV_CHAN_START";
+		return "CEL_CHAN_START";
 	case CEL_CHANNEL_END: 
-		return "EV_CHAN_END";
+		return "CEL_CHAN_END";
 	case CEL_HANGUP: 
-		return "EV_HANGUP";
+		return "CEL_HANGUP";
 	case CEL_ANSWER: 
-		return "EV_ANSWER";
+		return "CEL_ANSWER";
 	case CEL_APP_START:
-		return "EV_APP_START";
+		return "CEL_APP_START";
 	case CEL_APP_END:
-		return "EV_APP_END";
+		return "CEL_APP_END";
 	case CEL_BRIDGE_START:
-		return "EV_BRIDGE_START";
+		return "CEL_BRIDGE_START";
 	case CEL_BRIDGE_END:
-		return "EV_BRIDGE_END";
+		return "CEL_BRIDGE_END";
 	case CEL_CONF_START:
-		return "EV_CONF_START";
+		return "CEL_CONF_START";
 	case CEL_CONF_END:
-		return "EV_CONF_END";
+		return "CEL_CONF_END";
 	case CEL_PARK_START:
-		return "EV_PARK_START";
+		return "CEL_PARK_START";
 	case CEL_PARK_END:
-		return "EV_PARK_END";
+		return "CEL_PARK_END";
 	case CEL_TRANSFER:
-		return "EV_TRANSFER";
+		return "CEL_TRANSFER";
 	case CEL_CONF_ENTER:
-		return "EV_CONF_ENTER";
+		return "CEL_CONF_ENTER";
 	case CEL_CONF_EXIT:
-		return "EV_CONF_EXIT";
+		return "CEL_CONF_EXIT";
 	case CEL_USER_DEFINED:
-		return "EV_USER_DEF";
+		return "CEL_USER_DEF";
 	case CEL_BLINDTRANSFER:
-		return "EV_BLINDTRANSFER";
+		return "CEL_BLINDTRANSFER";
 	case CEL_ATTENDEDTRANSFER:
-		return "EV_ATTENDEDTRANSFER";
+		return "CEL_ATTENDEDTRANSFER";
 	case CEL_3WAY_START:
-		return "EV_3WAY_START";
+		return "CEL_3WAY_START";
 	case CEL_3WAY_END:
-		return "EV_3WAY_END";
+		return "CEL_3WAY_END";
 	case CEL_HOOKFLASH:
-		return "EV_HOOKFLASH";
+		return "CEL_HOOKFLASH";
 	case CEL_LINKEDID_END:
-		return "EV_LINKEDID_END";
+		return "CEL_LINKEDID_END";
 	}
 	return "";
 }




More information about the asterisk-commits mailing list