From fbbac7cd268098dbfadae1efd086823544756945 Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Sat, 7 May 2005 12:49:36 +0000 Subject: use ast_strcasestr (bug #4203) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5595 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- apps/app_directory.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps/app_directory.c') diff --git a/apps/app_directory.c b/apps/app_directory.c index 5a143c883..b73e53979 100755 --- a/apps/app_directory.c +++ b/apps/app_directory.c @@ -329,7 +329,7 @@ static int do_directory(struct ast_channel *chan, struct ast_config *cfg, char * while(v) { /* Find a candidate extension */ start = strdup(v->value); - if (start && !strcasestr(start, "hidefromdir=yes")) { + if (start && !ast_strcasestr(start, "hidefromdir=yes")) { stringp=start; strsep(&stringp, ","); pos = strsep(&stringp, ","); -- cgit v1.2.3