Merged revisions 114152 via svnmerge from

https://origsvn.digium.com/svn/asterisk/trunk

........
r114152 | tilghman | 2008-04-15 15:51:08 -0500 (Tue, 15 Apr 2008) | 2 lines

Oops, buffer wasn't long enough for query

........


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.0@114153 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Tilghman Lesher
2008-04-15 20:53:43 +00:00
parent af0e618767
commit 14900e903f

View File

@@ -454,7 +454,7 @@ static int config_module(int reload)
conn = PQsetdbLogin(pghostname, pgdbport, NULL, NULL, pgdbname, pgdbuser, pgpassword);
if (PQstatus(conn) != CONNECTION_BAD) {
char sqlcmd[256];
char sqlcmd[512];
char *fname, *ftype, *flen, *fnotnull, *fdef;
int i, rows;
ast_debug(1, "Successfully connected to PostgreSQL database.\n");