]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
try to make the dir first so if it fails the mod fails properly
authorAnthony Minessale <anthony.minessale@gmail.com>
Wed, 9 Dec 2009 16:16:24 +0000 (16:16 +0000)
committerAnthony Minessale <anthony.minessale@gmail.com>
Wed, 9 Dec 2009 16:16:24 +0000 (16:16 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@15859 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/mod/event_handlers/mod_cdr_csv/mod_cdr_csv.c

index 4423a9cfe6eeeed460e32afdec3ed7cbcf916eba..6d3cee7f5fc4f9ab754ffb11f9406db2b819aac9 100644 (file)
@@ -388,9 +388,14 @@ SWITCH_MODULE_LOAD_FUNCTION(mod_cdr_csv_load)
 {
        switch_status_t status = SWITCH_STATUS_SUCCESS;
 
-       if (switch_event_bind(modname, SWITCH_EVENT_TRAP, SWITCH_EVENT_SUBCLASS_ANY, event_handler, NULL) != SWITCH_STATUS_SUCCESS) {
+       if ((status = switch_dir_make_recursive(globals.log_dir, SWITCH_DEFAULT_DIR_PERMS, pool)) != SWITCH_STATUS_SUCCESS) {
+               switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Error creating %s\n", globals.log_dir);
+               return status;
+       }
+
+       if ((status = switch_event_bind(modname, SWITCH_EVENT_TRAP, SWITCH_EVENT_SUBCLASS_ANY, event_handler, NULL)) != SWITCH_STATUS_SUCCESS) {
                switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Couldn't bind!\n");
-               return SWITCH_STATUS_GENERR;
+               return status;
        }
 
        switch_core_add_state_handler(&state_handlers);
@@ -398,9 +403,6 @@ SWITCH_MODULE_LOAD_FUNCTION(mod_cdr_csv_load)
 
        load_config(pool);
 
-       if ((status = switch_dir_make_recursive(globals.log_dir, SWITCH_DEFAULT_DIR_PERMS, pool)) != SWITCH_STATUS_SUCCESS) {
-               switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Error creating %s\n", globals.log_dir);
-       }
 
        return status;
 }