]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
update
authorAnthony Minessale <anthony.minessale@gmail.com>
Tue, 6 Jun 2006 23:20:42 +0000 (23:20 +0000)
committerAnthony Minessale <anthony.minessale@gmail.com>
Tue, 6 Jun 2006 23:20:42 +0000 (23:20 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1552 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/mod/applications/mod_rss/mod_rss.c

index cf765db40f612afc333a244977b15b0bf1bd40c3..fafab5f548a1ae2fb340babfc7716da90f1c0bde 100644 (file)
@@ -72,7 +72,6 @@ static switch_status_t on_dtmf(switch_core_session_t *session, char *dtmf, void
 
        if (dtb->len == 2) {
                if (*dtb->data == '*') {
-                       printf("%s\n", dtb->data);
                        dtb->front = dtb->data;
                        dtb->len = 0;
                        *dtb->data = '\0';
@@ -195,24 +194,7 @@ SWITCH_MOD_DECLARE(switch_status_t) switch_module_load(const switch_loadable_mod
        /* connect my internal structure to the blank pointer passed to me */
        *module_interface = &rss_module_interface;
 
-       switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_NOTICE, "Hello World!\n");
-
        /* indicate that the module should continue to be loaded */
        return SWITCH_STATUS_SUCCESS;
 }
 
-/*
-  Called when the system shuts down
-  SWITCH_MOD_DECLARE(switch_status) switch_module_shutdown(void)
-  {
-  return SWITCH_STATUS_SUCCESS;
-  }
-*/
-
-/*
-  If it exists, this is called in it's own thread when the module-load completes
-  SWITCH_MOD_DECLARE(switch_status) switch_module_shutdown(void)
-  {
-  return SWITCH_STATUS_SUCCESS;
-  }
-*/