summaryrefslogtreecommitdiff
path: root/apps/app_directory.c
diff options
context:
space:
mode:
authorKevin P. Fleming <kpfleming@digium.com>2005-07-15 22:06:15 +0000
committerKevin P. Fleming <kpfleming@digium.com>2005-07-15 22:06:15 +0000
commit9d8d86e19de01ea94e3106d78af8aa44e6670745 (patch)
tree72a1219d1b5eeaaa08f28862bb67263d906f91ce /apps/app_directory.c
parentda1d0363cae0088a30c835393fa9cd5051f00a2f (diff)
phase two of string portability stuff:
don't need ast_ prefixes on functions use individual #defines for function presence add vasprintf to portability library git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6143 65c4cc65-6c06-0410-ace0-fbb531ad65f3
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 252b43787..ad21736c4 100755
--- a/apps/app_directory.c
+++ b/apps/app_directory.c
@@ -332,7 +332,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 && !ast_strcasestr(start, "hidefromdir=yes")) {
+ if (start && !strcasestr(start, "hidefromdir=yes")) {
stringp=start;
strsep(&stringp, ",");
pos = strsep(&stringp, ",");