From 0523e82f469cd4e1b369fb296767b120151a9179 Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Sat, 20 May 2006 00:57:04 +0000 Subject: if a hostname is not specified, connect over a unix socket instead of connecting to localhost (issue #7145, Mithraen) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@28897 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- cdr/cdr_pgsql.c | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'cdr') diff --git a/cdr/cdr_pgsql.c b/cdr/cdr_pgsql.c index 492301a2d..6af1a93a7 100644 --- a/cdr/cdr_pgsql.c +++ b/cdr/cdr_pgsql.c @@ -222,8 +222,8 @@ static int process_my_load_module(struct ast_config *cfg) tmp = ast_variable_retrieve(cfg,"global","hostname"); if (tmp == NULL) { - ast_log(LOG_WARNING,"PostgreSQL server hostname not specified. Assuming localhost\n"); - tmp = "localhost"; + ast_log(LOG_WARNING,"PostgreSQL server hostname not specified. Assuming unix socket connection\n"); + tmp = ""; /* connect via UNIX-socket by default */ } pghostname = strdup(tmp); if (pghostname == NULL) { @@ -287,10 +287,11 @@ static int process_my_load_module(struct ast_config *cfg) } if (option_debug) { - ast_log(LOG_DEBUG, "cdr_pgsql: got hostname of %s\n", pghostname); + if (ast_strlen_zero(pghostname)) + ast_log(LOG_DEBUG, "cdr_pgsql: using default unix socket\n"); + else + ast_log(LOG_DEBUG, "cdr_pgsql: got hostname of %s\n", pghostname); ast_log(LOG_DEBUG, "cdr_pgsql: got port of %s\n", pgdbport); - if (pgdbsock) - ast_log(LOG_DEBUG, "cdr_pgsql: got sock file of %s\n", pgdbsock); ast_log(LOG_DEBUG, "cdr_pgsql: got user of %s\n", pgdbuser); ast_log(LOG_DEBUG, "cdr_pgsql: got dbname of %s\n", pgdbname); ast_log(LOG_DEBUG, "cdr_pgsql: got password of %s\n", pgpassword); -- cgit v1.2.3