fix compiler error

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@15489 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Jeff Lenk
2009-11-17 01:31:12 +00:00
parent a34e3f76d2
commit 67b3210a31
4 changed files with 7 additions and 5 deletions

View 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>");