aboutsummaryrefslogtreecommitdiffstats
path: root/res/res_odbc.c
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2007-07-27 18:17:12 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2007-07-27 18:17:12 +0000
commitdf09fe635dc7d7916a3ac2a083225f8e0e348738 (patch)
treeebe6f9939cd743bae67a96b38d0ed061ef16a771 /res/res_odbc.c
parenta7df13a908bb9f47c158d62893bab7b78233d690 (diff)
Merged revisions 77571 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r77571 | tilghman | 2007-07-27 13:15:58 -0500 (Fri, 27 Jul 2007) | 2 lines Missing newline ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@77572 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'res/res_odbc.c')
-rw-r--r--res/res_odbc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/res/res_odbc.c b/res/res_odbc.c
index a62f8976c..56773f93b 100644
--- a/res/res_odbc.c
+++ b/res/res_odbc.c
@@ -325,7 +325,7 @@ static int odbc_show_command(int fd, int argc, char **argv)
ast_cli(fd, "Pooled: yes\nLimit: %d\nConnections in use: %d\n", class->limit, class->count);
AST_LIST_TRAVERSE(&(class->odbc_obj), current, list) {
- ast_cli(fd, " Connection %d: %s", ++count, current->up && ast_odbc_sanity_check(current) ? "connected" : "disconnected");
+ ast_cli(fd, " Connection %d: %s\n", ++count, current->up && ast_odbc_sanity_check(current) ? "connected" : "disconnected");
}
} else {
/* Should only ever be one of these */