[Asterisk-cvs] asterisk/apps app_directory.c,1.39,1.40
kpfleming at lists.digium.com
kpfleming at lists.digium.com
Fri Jul 15 17:58:26 CDT 2005
- Previous message: [Asterisk-cvs] zaptel/doc ztcfg.8.gz, NONE, 1.1 ztcfg.sgml, NONE,
1.1 ztmonitor.8.gz, NONE, 1.1 ztmonitor.sgml, NONE,
1.1 zttool.8.gz, NONE, 1.1 zttool.sgml, NONE, 1.1
- Next message: [Asterisk-cvs] asterisk channel.c, 1.219, 1.220 cli.c, 1.90,
1.91 pbx.c, 1.260, 1.261 utils.c, 1.56, 1.57
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /usr/cvsroot/asterisk/apps
In directory mongoose.digium.com:/tmp/cvs-serv12870/apps
Modified Files:
app_directory.c
Log Message:
phase two of string portability stuff:
don't need ast_ prefixes on functions
use individual #defines for function presence
add vasprintf to portability library
Index: app_directory.c
===================================================================
RCS file: /usr/cvsroot/asterisk/apps/app_directory.c,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -d -r1.39 -r1.40
--- app_directory.c 10 Jul 2005 23:12:25 -0000 1.39
+++ app_directory.c 15 Jul 2005 22:06:15 -0000 1.40
@@ -332,7 +332,7 @@
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, ",");
- Previous message: [Asterisk-cvs] zaptel/doc ztcfg.8.gz, NONE, 1.1 ztcfg.sgml, NONE,
1.1 ztmonitor.8.gz, NONE, 1.1 ztmonitor.sgml, NONE,
1.1 zttool.8.gz, NONE, 1.1 zttool.sgml, NONE, 1.1
- Next message: [Asterisk-cvs] asterisk channel.c, 1.219, 1.220 cli.c, 1.90,
1.91 pbx.c, 1.260, 1.261 utils.c, 1.56, 1.57
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the svn-commits
mailing list