[Asterisk-cvs] asterisk/apps app_directory.c,1.35,1.36

russell at lists.digium.com russell at lists.digium.com
Sat May 7 08:43:06 CDT 2005


Update of /usr/cvsroot/asterisk/apps
In directory mongoose.digium.com:/tmp/cvs-serv4888/apps

Modified Files:
	app_directory.c 
Log Message:
use ast_strcasestr (bug #4203)


Index: app_directory.c
===================================================================
RCS file: /usr/cvsroot/asterisk/apps/app_directory.c,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -d -r1.35 -r1.36
--- app_directory.c	21 Apr 2005 06:02:43 -0000	1.35
+++ app_directory.c	7 May 2005 12:49:36 -0000	1.36
@@ -329,7 +329,7 @@
 			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, ",");




More information about the svn-commits mailing list