summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2005-10-18 03:02:06 +0000
committerRussell Bryant <russell@russellbryant.com>2005-10-18 03:02:06 +0000
commitb59ab89e1ac1fb8955d5326a83a208021313da08 (patch)
treea13aa237c9473c3455778f6b4e7267546c11f5cf /apps
parentff34fbd02b01e16fca910649ac2db09d5eb50e1d (diff)
implement TXTCIDNAME as a dialplan function and mark the application deprecated
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6813 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps')
-rwxr-xr-xapps/app_txtcidname.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/apps/app_txtcidname.c b/apps/app_txtcidname.c
index cb88c7e12..25547c20b 100755
--- a/apps/app_txtcidname.c
+++ b/apps/app_txtcidname.c
@@ -61,9 +61,15 @@ static int txtcidname_exec(struct ast_channel *chan, void *data)
char tech[80];
char txt[256] = "";
char dest[80];
-
struct localuser *u;
- if (!data || !strlen(data)) {
+ static int dep_warning = 0;
+
+ if (!dep_warning) {
+ ast_log(LOG_WARNING, "The TXTCIDName application has been deprecated in favor of the TXTCIDNAME dialplan function.\n");
+ dep_warning = 1;
+ }
+
+ if (!data || ast_strlen_zero(data)) {
ast_log(LOG_WARNING, "TXTCIDName requires an argument (extension)\n");
res = 1;
}