Module: sip-router Branch: janakj/postgres Commit: 8bcba8987e78f28548bd96fd69ae0c194a6faa00 URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=8bcba898...
Author: Jan Janak jan@iptel.org Committer: Jan Janak jan@iptel.org Date: Wed Oct 8 13:07:21 2003 +0000
- Got rid of all the ~ at the beginning of functions that are not supposed to be called from scripts. It's a relict.
---
modules/db_postgres/db_mod.c | 18 +++++++++--------- 1 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/modules/db_postgres/db_mod.c b/modules/db_postgres/db_mod.c index 73f4def..c53bddf 100644 --- a/modules/db_postgres/db_mod.c +++ b/modules/db_postgres/db_mod.c @@ -48,15 +48,15 @@ static int mod_init(void);
static cmd_export_t cmds[]={ - {"~db_use_table", (cmd_function)use_table, 2, 0, 0}, - {"~db_init", (cmd_function)db_init, 1, 0, 0}, - {"~db_close", (cmd_function)db_close, 2, 0, 0}, - {"~db_query", (cmd_function)db_query, 2, 0, 0}, - {"~db_raw_query", (cmd_function)db_raw_query, 2, 0, 0}, - {"~db_free_query", (cmd_function)db_free_query, 2, 0, 0}, - {"~db_insert", (cmd_function)db_insert, 2, 0, 0}, - {"~db_delete", (cmd_function)db_delete, 2, 0, 0}, - {"~db_update", (cmd_function)db_update, 2, 0, 0}, + {"db_use_table", (cmd_function)use_table, 2, 0, 0}, + {"db_init", (cmd_function)db_init, 1, 0, 0}, + {"db_close", (cmd_function)db_close, 2, 0, 0}, + {"db_query", (cmd_function)db_query, 2, 0, 0}, + {"db_raw_query", (cmd_function)db_raw_query, 2, 0, 0}, + {"db_free_query", (cmd_function)db_free_query, 2, 0, 0}, + {"db_insert", (cmd_function)db_insert, 2, 0, 0}, + {"db_delete", (cmd_function)db_delete, 2, 0, 0}, + {"db_update", (cmd_function)db_update, 2, 0, 0}, {0,0,0,0,0} };