[asterisk-commits] tilghman: branch 1.4 r77571 - /branches/1.4/res/res_odbc.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Fri Jul 27 13:15:59 CDT 2007


Author: tilghman
Date: Fri Jul 27 13:15:58 2007
New Revision: 77571

URL: http://svn.digium.com/view/asterisk?view=rev&rev=77571
Log:
Missing newline

Modified:
    branches/1.4/res/res_odbc.c

Modified: branches/1.4/res/res_odbc.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/res/res_odbc.c?view=diff&rev=77571&r1=77570&r2=77571
==============================================================================
--- branches/1.4/res/res_odbc.c (original)
+++ branches/1.4/res/res_odbc.c Fri Jul 27 13:15:58 2007
@@ -322,7 +322,7 @@
 				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 */




More information about the asterisk-commits mailing list