[Asterisk-cvs] asterisk/apps app_groupcount.c, 1.14, 1.15 app_setcidname.c, 1.7, 1.8 app_setcidnum.c, 1.8, 1.9 app_setrdnis.c, 1.3, 1.4

kpfleming at lists.digium.com kpfleming at lists.digium.com
Sun May 15 19:27:14 CDT 2005


Update of /usr/cvsroot/asterisk/apps
In directory mongoose.digium.com:/tmp/cvs-serv19151/apps

Modified Files:
	app_groupcount.c app_setcidname.c app_setcidnum.c 
	app_setrdnis.c 
Log Message:
rename SetVar application to Set, deprecate SetVar


Index: app_groupcount.c
===================================================================
RCS file: /usr/cvsroot/asterisk/apps/app_groupcount.c,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- app_groupcount.c	8 May 2005 17:17:34 -0000	1.14
+++ app_groupcount.c	15 May 2005 23:32:38 -0000	1.15
@@ -227,7 +227,7 @@
 static char *group_set_descrip =
 "Usage: SetGroup(groupname[@category])\n"
 "  Sets the channel group to the specified value.  Equivalent to\n"
-"SetVar(GROUP=group).  Always returns 0.\n";
+"Set(GROUP=group).  Always returns 0.\n";
 
 static char *group_check_descrip =
 "Usage: CheckGroup(max[@category])\n"

Index: app_setcidname.c
===================================================================
RCS file: /usr/cvsroot/asterisk/apps/app_setcidname.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- app_setcidname.c	15 May 2005 17:45:30 -0000	1.7
+++ app_setcidname.c	15 May 2005 23:32:38 -0000	1.8
@@ -51,7 +51,7 @@
 	static int deprecation_warning = 0;
 
 	if (!deprecation_warning) {
-		ast_log(LOG_WARNING, "SetCIDName is deprecated, please use SetVar(CALLERID(name)=value) instead.\n");
+		ast_log(LOG_WARNING, "SetCIDName is deprecated, please use Set(CALLERID(name)=value) instead.\n");
 		deprecation_warning = 1;
 	}
 

Index: app_setcidnum.c
===================================================================
RCS file: /usr/cvsroot/asterisk/apps/app_setcidnum.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- app_setcidnum.c	15 May 2005 17:45:30 -0000	1.8
+++ app_setcidnum.c	15 May 2005 23:32:38 -0000	1.9
@@ -53,7 +53,7 @@
 	static int deprecation_warning = 0;
 
 	if (!deprecation_warning) {
-		ast_log(LOG_WARNING, "SetCIDNum is deprecated, please use SetVar(CALLERID(number)=value) instead.\n");
+		ast_log(LOG_WARNING, "SetCIDNum is deprecated, please use Set(CALLERID(number)=value) instead.\n");
 		deprecation_warning = 1;
 	}
 

Index: app_setrdnis.c
===================================================================
RCS file: /usr/cvsroot/asterisk/apps/app_setrdnis.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- app_setrdnis.c	15 May 2005 17:45:30 -0000	1.3
+++ app_setrdnis.c	15 May 2005 23:32:38 -0000	1.4
@@ -49,7 +49,7 @@
 	static int deprecation_warning = 0;
 
 	if (!deprecation_warning) {
-		ast_log(LOG_WARNING, "SetRDNIS is deprecated, please use SetVar(CALLERID(rdnis)=value) instead.\n");
+		ast_log(LOG_WARNING, "SetRDNIS is deprecated, please use Set(CALLERID(rdnis)=value) instead.\n");
 		deprecation_warning = 1;
 	}
 




More information about the svn-commits mailing list