- mark some applications deprecated that already have replacements

- add BLACKLIST and mark LookupBlacklist deprecated
- add transfercapability support to CHANNEL and mark SetTransferCapability
  deprecated
(issue #7225, Corydon)


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@30359 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Russell Bryant
2006-05-25 19:07:31 +00:00
parent 26271fbd3a
commit d2872c914d
5 changed files with 77 additions and 3 deletions

View File

@@ -76,9 +76,15 @@ static int settransfercapability_exec(struct ast_channel *chan, void *data)
int x;
char *opts;
int transfercapability = -1;
static int dep_warning = 0;
LOCAL_USER_ADD(u);
if (!dep_warning) {
dep_warning = 1;
ast_log(LOG_WARNING, "SetTransferCapability is deprecated. Please use CHANNEL(transfercapability) instead.\n");
}
if (data)
tmp = ast_strdupa(data);
else