From 025aeb8f62d8b5c199846c20c73ff25720dae21e Mon Sep 17 00:00:00 2001 From: kpfleming Date: Sun, 15 May 2005 17:45:30 +0000 Subject: add dialplan functions for Caller ID, language and timeouts (bug #4219, with mods) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@5679 f38db490-d61c-443f-a65b-d21fe96a405b --- apps/app_setcidnum.c | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'apps/app_setcidnum.c') diff --git a/apps/app_setcidnum.c b/apps/app_setcidnum.c index e7324da3d..fb75b9e78 100755 --- a/apps/app_setcidnum.c +++ b/apps/app_setcidnum.c @@ -35,7 +35,9 @@ static char *descrip = " SetCIDNum(cnum[|a]): Set Caller*ID Number on a call to a new\n" "value, while preserving the original Caller*ID name. This is\n" "useful for providing additional information to the called\n" -"party. Sets ANI as well if a flag is used. Always returns 0\n"; +"party. Sets ANI as well if a flag is used. Always returns 0\n" +"SetCIDNum has been deprecated in favor of the function\n" +"CALLERID(number)\n"; STANDARD_LOCAL_USER; @@ -48,6 +50,13 @@ static int setcallerid_exec(struct ast_channel *chan, void *data) char *opt; int anitoo = 0; char tmp[256]; + static int deprecation_warning = 0; + + if (!deprecation_warning) { + ast_log(LOG_WARNING, "SetCIDNum is deprecated, please use SetVar(CALLERID(number)=value) instead.\n"); + deprecation_warning = 1; + } + if (data) strncpy(tmp, (char *)data, sizeof(tmp) - 1); opt = strchr(tmp, '|'); -- cgit v1.2.3