Module: sip-router Branch: master Commit: bc0a4370950ee6ad3723976af7bb13c6ff1f5202 URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=bc0a4370...
Author: Olle E. Johansson oej@edvina.net Committer: Olle E. Johansson oej@edvina.net Date: Tue Dec 2 21:52:27 2014 +0100
db_text Add missing line feed at end of debug message
---
modules/db_text/dbt_base.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules/db_text/dbt_base.c b/modules/db_text/dbt_base.c index 4454574..c29a5e0 100644 --- a/modules/db_text/dbt_base.c +++ b/modules/db_text/dbt_base.c @@ -96,7 +96,7 @@ db1_con_t* dbt_init(const str* _sqlurl) memset(_res, 0, sizeof(db1_con_t) + sizeof(dbt_con_t)); _res->tail = (unsigned long)((char*)_res+sizeof(db1_con_t));
- LM_INFO("using database at: %.*s", _s.len, _s.s); + LM_INFO("using database at: %.*s\n", _s.len, _s.s); DBT_CON_CONNECTION(_res) = dbt_cache_get_db(&_s); if (!DBT_CON_CONNECTION(_res)) {