aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_directory.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2005-05-07 12:49:36 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2005-05-07 12:49:36 +0000
commit45a5d77d81de8832f93e1d462fdf6dfde9b49b13 (patch)
tree3f3811e953e6dec182a31c8c73f60b903c8811ca /apps/app_directory.c
parentbde30dd34197fa3fb061ebe4361ad8bbf230b3d4 (diff)
use ast_strcasestr (bug #4203)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@5595 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps/app_directory.c')
-rwxr-xr-xapps/app_directory.c2
1 files changed, 1 insertions, 1 deletions
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, ",");