]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
fix compiler error
authorJeff Lenk <jeff@jefflenk.com>
Tue, 17 Nov 2009 01:31:12 +0000 (01:31 +0000)
committerJeff Lenk <jeff@jefflenk.com>
Tue, 17 Nov 2009 01:31:12 +0000 (01:31 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@15489 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/mod/applications/mod_easyroute/mod_easyroute.c
src/mod/applications/mod_lcr/mod_lcr.c
src/mod/applications/mod_nibblebill/mod_nibblebill.c
src/mod/formats/mod_shout/mod_shout.c

index 24ad56fb15d043e7e1dc5282c6b405bd8c718bea..2d78e46ce4349ca2773c77728f4e08b12d3fe0f5 100644 (file)
@@ -204,7 +204,7 @@ static switch_status_t route_lookup(char *dn, easyroute_results_t *results, int
                switch_mutex_lock(globals.mutex);
        }
        /* Do the Query */
-       if (switch_odbc_handle_callback_exec(globals.master_odbc, sql, route_callback, &pdata) == SWITCH_ODBC_SUCCESS){
+       if (switch_odbc_handle_callback_exec(globals.master_odbc, sql, route_callback, &pdata, NULL) == SWITCH_ODBC_SUCCESS){
                char tmp_profile[129];
                char tmp_gateway[129];
 
index e3182fb6d33c5e0a51a314155dcc184a89ce6f6f..f1fe391072d9867e21c3f550d4a593e4bc7c50bf 100644 (file)
@@ -526,7 +526,7 @@ static switch_bool_t lcr_execute_sql_callback(char *sql, switch_core_db_callback
        
        switch_mutex_lock(globals.db_mutex);
        if (globals.odbc_dsn) {
-               if (switch_odbc_handle_callback_exec(globals.master_odbc, sql, callback, pdata)
+               if (switch_odbc_handle_callback_exec(globals.master_odbc, sql, callback, pdata, NULL)
                                == SWITCH_ODBC_FAIL) {
                        retval = SWITCH_FALSE;
                } else {
index 196a29014f7b6fb57530866002b190880ec67480..6b84e1a0a5d0f5e6ffbf0ee74f49134de6632454 100644 (file)
@@ -338,7 +338,7 @@ static float get_balance(const char *billaccount)
        memset(&pdata, 0, sizeof(pdata));
        snprintf(sql, 1024, SQL_LOOKUP, globals.db_column_cash, globals.db_table, globals.db_column_account, billaccount);
 
-       if (switch_odbc_handle_callback_exec(globals.master_odbc, sql, nibblebill_callback, &pdata) != SWITCH_ODBC_SUCCESS) {
+       if (switch_odbc_handle_callback_exec(globals.master_odbc, sql, nibblebill_callback, &pdata, NULL) != SWITCH_ODBC_SUCCESS) {
                switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Error running this query: [%s]\n", sql);
                /* Return -1 for safety */
 
index 02d2cd440622009c23ab2e12a864ca3efc8675dc..ef6f156568bb8e8860604fdf034350567aeec6ab 100644 (file)
@@ -1319,11 +1319,13 @@ void do_broadcast(switch_stream_handle_t *stream)
 
 void do_index(switch_stream_handle_t *stream)
 {
-       switch_core_db_t *db = switch_core_db_handle();
+       switch_cache_db_handle_t *db; 
        const char *sql = "select * from channels";
        struct holder holder;
        char *errmsg;
 
+       switch_core_db_handle(&db);
+
        holder.host = switch_event_get_header(stream->param_event, "http-host");
        holder.port = switch_event_get_header(stream->param_event, "http-port");
        holder.uri = switch_event_get_header(stream->param_event, "http-uri");
@@ -1335,7 +1337,7 @@ void do_index(switch_stream_handle_t *stream)
                                                   "<tr><td>%s</td><td>%s</td><td>%s</td><td>%s</td><td>%s</td><td>%s</td><td>%s</td><td>%s</td><td>%s</td></tr>\n",
                                                   "Created", "CID Name", "CID Num", "Ext", "App", "Data", "Codec", "Rate", "Listen");
 
-       switch_core_db_exec(db, sql, web_callback, &holder, &errmsg);
+       switch_cache_db_execute_sql_callback(db, sql, web_callback, &holder, &errmsg);
 
        stream->write_function(stream, "</table>");