[Freeswitch-svn] [commit] r5902 - freeswitch/trunk/src
Freeswitch SVN
anthm at freeswitch.org
Tue Oct 16 13:30:42 EDT 2007
Author: anthm
Date: Tue Oct 16 13:30:42 2007
New Revision: 5902
Modified:
freeswitch/trunk/src/switch_core.c
Log:
auto-create sounds dir
Modified: freeswitch/trunk/src/switch_core.c
==============================================================================
--- freeswitch/trunk/src/switch_core.c (original)
+++ freeswitch/trunk/src/switch_core.c Tue Oct 16 13:30:42 2007
@@ -254,6 +254,7 @@
SWITCH_DECLARE(void) switch_core_set_globals(void)
{
+ char *dir_path;
#define BUFSIZE 1024
#ifdef WIN32
char lpPathBuffer[BUFSIZE];
@@ -348,6 +349,12 @@
#endif
}
+
+ dir_path = switch_mprintf("%s%ssounds", SWITCH_GLOBAL_dirs.base_dir, SWITCH_PATH_SEPARATOR);
+ switch_dir_make_recursive(dir_path,
+ SWITCH_FPROT_UREAD | SWITCH_FPROT_UWRITE | SWITCH_FPROT_UEXECUTE | SWITCH_FPROT_GREAD | SWITCH_FPROT_GEXECUTE,
+ runtime.memory_pool);
+ switch_safe_free(dir_path);
}
More information about the Freeswitch-svn
mailing list