Skip to content
Snippets Groups Projects
Commit b42abc9c authored by Kevin P. Fleming's avatar Kevin P. Fleming
Browse files

deprecate EnumLookup() application

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6591 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent f2e6ac45
No related branches found
No related tags found
No related merge requests found
......@@ -71,8 +71,14 @@ static int enumlookup_exec(struct ast_channel *chan, void *data)
char dest[80];
char tmp[256];
char *c,*t;
static int dep_warning=0;
tech[0] = '\0';
if (!dep_warning) {
ast_log(LOG_WARNING, "The application EnumLookup is deprecated. Please use the ENUMLOOKUP() function instead.\n");
dep_warning=1;
}
tech[0] = '\0';
struct localuser *u;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment