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
This commit is contained in:
Russell Bryant
2005-10-18 03:02:06 +00:00
parent ff34fbd02b
commit b59ab89e1a
2 changed files with 68 additions and 7 deletions

View File

@@ -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;
}