From 46fa1d347246e4fbc571a26d58da01f93fac0da9 Mon Sep 17 00:00:00 2001 From: oej Date: Sun, 9 Apr 2006 18:57:25 +0000 Subject: Issue 6917 - some cleanups for res_config_pgsql.c (mithraen) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@18607 f38db490-d61c-443f-a65b-d21fe96a405b --- res/res_config_pgsql.c | 23 +++++++++-------------- 1 file changed, 9 insertions(+), 14 deletions(-) diff --git a/res/res_config_pgsql.c b/res/res_config_pgsql.c index 6dbf8ab0f..114fcfb3f 100644 --- a/res/res_config_pgsql.c +++ b/res/res_config_pgsql.c @@ -46,11 +46,12 @@ static char *res_config_pgsql_desc = "Postgresql RealTime Configuration Driver"; AST_MUTEX_DEFINE_STATIC(pgsql_lock); #define RES_CONFIG_PGSQL_CONF "res_pgsql.conf" PGconn* pgsqlConn = NULL; -static char dbhost[50]=""; -static char dbuser[50]=""; -static char dbpass[50]=""; -static char dbname[50]=""; -static char dbsock[50]=""; +#define MAX_DB_OPTION_SIZE 64 +static char dbhost[MAX_DB_OPTION_SIZE]=""; +static char dbuser[MAX_DB_OPTION_SIZE]=""; +static char dbpass[MAX_DB_OPTION_SIZE]=""; +static char dbname[MAX_DB_OPTION_SIZE]=""; +static char dbsock[MAX_DB_OPTION_SIZE]=""; static int dbport=5432; static time_t connect_time=0; @@ -99,8 +100,7 @@ static struct ast_variable *realtime_pgsql(const char *database, const char *tab /* Create the first part of the query using the first parameter/value pairs we just extracted If there is only 1 set, then we have our query. Otherwise, loop thru the list and concat */ - - if(!strchr(newparam, ' ')) op = " ="; else op = ""; + op = strchr(newparam, ' ')?"":" ="; snprintf(sql, sizeof(sql), "SELECT * FROM %s WHERE %s%s '%s'", table, newparam, op, newval); while((newparam = va_arg(ap, const char *))) { @@ -159,8 +159,7 @@ static struct ast_variable *realtime_pgsql(const char *database, const char *tab } for(i = 0; i < numFields; i++) fieldnames[i]=PQfname(result,i); - for(rowIndex=0;rowIndex