From 56f0d5fc0f25b82d0e5a95f7de58f52261ebc118 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodrigo=20Ram=C3=ADrez=20Norambuena?= <a@rodrigoramirez.com> Date: Tue, 19 Sep 2017 08:34:28 -0300 Subject: [PATCH] res_config_pgsql: Add missing \n in debug log and update copyright year Change-Id: I4ba338ecbdecc6a814a902eddc4121c8ef3cda58 --- res/res_config_pgsql.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/res/res_config_pgsql.c b/res/res_config_pgsql.c index 536c9e1733..332b35d6cd 100644 --- a/res/res_config_pgsql.c +++ b/res/res_config_pgsql.c @@ -1,7 +1,7 @@ /* * Asterisk -- An open source telephony toolkit. * - * Copyright (C) 1999 - 2016, Digium, Inc. + * Copyright (C) 1999 - 2017, Digium, Inc. * * Manuel Guesdon <mguesdon@oxymium.net> - PostgreSQL RealTime Driver Author/Adaptor * Mark Spencer <markster@digium.com> - Asterisk Author @@ -1035,7 +1035,7 @@ static int store_pgsql(const char *database, const char *table, const struct ast numrows = atoi(PQcmdTuples(result)); ast_mutex_unlock(&pgsql_lock); - ast_debug(1, "PostgreSQL RealTime: row inserted on table: %s.", table); + ast_debug(1, "PostgreSQL RealTime: row inserted on table: %s.\n", table); /* From http://dev.pgsql.com/doc/pgsql/en/pgsql-affected-rows.html * An integer greater than zero indicates the number of rows affected -- GitLab