]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
whitespace cleanup...
authorBrian West <brian@freeswitch.org>
Sun, 27 Jan 2008 03:06:52 +0000 (03:06 +0000)
committerBrian West <brian@freeswitch.org>
Sun, 27 Jan 2008 03:06:52 +0000 (03:06 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@7383 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/mod/dialplans/mod_dialplan_asterisk/mod_dialplan_asterisk.c
src/mod/dialplans/mod_dialplan_xml/mod_dialplan_xml.c

index 2d84ec04a9954c103394a78912c957ca0c92c6e4..e85f6c6a7c6836a1923c882c23fb0db953d9ea86 100644 (file)
@@ -47,7 +47,6 @@ static switch_status_t exec_app(switch_core_session_t *session, char *app, char
        return SWITCH_STATUS_FALSE;
 }
 
-
 SWITCH_STANDARD_APP(dial_function)
 {
        int argc;
@@ -77,7 +76,6 @@ SWITCH_STANDARD_APP(dial_function)
                
                goto ok;
        }
-
        
  error:
        switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Error!\n");
@@ -85,7 +83,6 @@ SWITCH_STANDARD_APP(dial_function)
  ok:
        
        return;
-
 }
 
 SWITCH_STANDARD_APP(avoid_function)
@@ -107,8 +104,6 @@ SWITCH_STANDARD_APP(avoid_function)
     memset((void *) y, 0, 1000);
 }
 
-
-
 SWITCH_STANDARD_APP(goto_function)
 {
        int argc;
@@ -118,7 +113,6 @@ SWITCH_STANDARD_APP(goto_function)
        
        channel = switch_core_session_get_channel(session);
     assert(channel != NULL);
-
        
        if (data && (mydata = switch_core_session_strdup(session, data))) {
                if ((argc = switch_separate_string(mydata, '|', argv, (sizeof(argv) / sizeof(argv[0])))) < 1) {
@@ -128,7 +122,6 @@ SWITCH_STANDARD_APP(goto_function)
                switch_ivr_session_transfer(session, argv[1], "asterisk", argv[0]);
                goto ok;
        }
-
        
  error:
        switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Error!\n");
@@ -136,10 +129,8 @@ SWITCH_STANDARD_APP(goto_function)
  ok:
        
        return;
-
 }
 
-
 SWITCH_STANDARD_DIALPLAN(asterisk_dialplan_hunt)
 {
        switch_caller_extension_t *extension = NULL;
@@ -316,7 +307,6 @@ SWITCH_STANDARD_DIALPLAN(asterisk_dialplan_hunt)
        return extension;
 }
 
-
 /* fake chan_sip */
 switch_endpoint_interface_t *sip_endpoint_interface;
 static switch_call_cause_t sip_outgoing_channel(switch_core_session_t *session,
@@ -379,9 +369,6 @@ static char *key()
     return WE_DONT_NEED_NO_STINKIN_KEY;
 }
 
-
-
-
 SWITCH_MODULE_LOAD_FUNCTION(mod_dialplan_asterisk_load)
 {
        switch_dialplan_interface_t *dp_interface;
@@ -408,7 +395,6 @@ SWITCH_MODULE_LOAD_FUNCTION(mod_dialplan_asterisk_load)
        sip_endpoint_interface->interface_name = "SIP";
        sip_endpoint_interface->io_routines = &sip_io_routines;
 
-
        /* fake chan_iax2 facade */
        iax2_endpoint_interface = switch_loadable_module_create_interface(*module_interface, SWITCH_ENDPOINT_INTERFACE);
        iax2_endpoint_interface->interface_name = "IAX2";
index 091d170c80d6ba6ad06f6bace8f997f35dccda8c..dc5bf792626897e7eb6025019004b8b368dd6818 100644 (file)
@@ -131,7 +131,6 @@ static int parse_exten(switch_core_session_t *session, switch_caller_profile_t *
                        assert(re != NULL);
                }
 
-
                for (xaction = switch_xml_child(xcond, "action"); xaction; xaction = xaction->next) {
                        char *application = (char *) switch_xml_attr_soft(xaction, "application");
                        char *data = NULL;
@@ -221,7 +220,6 @@ SWITCH_STANDARD_DIALPLAN(dialplan_hunt)
        if (!caller_profile->context) {
                caller_profile->context = "default";
        }
-       
 
        switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_INFO, "Processing %s->%s!\n", caller_profile->caller_id_name, caller_profile->destination_number);
 
@@ -274,7 +272,6 @@ SWITCH_STANDARD_DIALPLAN(dialplan_hunt)
                xexten = xexten->next;
        }
 
-
        switch_xml_free(xml);
        xml = NULL;