dect
/
asterisk
Archived
13
0
Fork 0

Deprecate SetCallerID (should have happened prior to release of 1.2)

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@30411 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
tilghman 2006-05-25 21:06:43 +00:00
parent d55c1b0a27
commit 049bf7262e
1 changed files with 7 additions and 1 deletions

View File

@ -107,6 +107,7 @@ static int setcallerid_exec(struct ast_channel *chan, void *data)
struct localuser *u;
char *opt;
int anitoo = 0;
static int dep_warning = 0;
if (ast_strlen_zero(data)) {
ast_log(LOG_WARNING, "SetCallerID requires an argument!\n");
@ -114,7 +115,12 @@ static int setcallerid_exec(struct ast_channel *chan, void *data)
}
LOCAL_USER_ADD(u);
if (!dep_warning) {
dep_warning = 1;
ast_log(LOG_WARNING, "SetCallerID is deprecated. Please use Set(CALLERID(all)=...) or Set(CALLERID(ani)=...) instead.\n");
}
tmp = ast_strdupa(data);
opt = strchr(tmp, '|');