aboutsummaryrefslogtreecommitdiff
path: root/src/backend/access/transam/xlog.c
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2004-03-22 04:16:57 +0000
committerBruce Momjian <bruce@momjian.us>2004-03-22 04:16:57 +0000
commit6367ed43820766e2d7387a3e0c711480be4576b8 (patch)
treec089a7e6a6388882960e646759fedcac352d215d /src/backend/access/transam/xlog.c
parent2678395928821321c853ee2c23533c41922a2640 (diff)
downloadpostgresql-6367ed43820766e2d7387a3e0c711480be4576b8.tar.gz
postgresql-6367ed43820766e2d7387a3e0c711480be4576b8.zip
Increase xlog str_time() static string variable, per Korean User's Group.
Diffstat (limited to 'src/backend/access/transam/xlog.c')
-rw-r--r--src/backend/access/transam/xlog.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c
index 821b504cbf7..d07f9edaecc 100644
--- a/src/backend/access/transam/xlog.c
+++ b/src/backend/access/transam/xlog.c
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $PostgreSQL: pgsql/src/backend/access/transam/xlog.c,v 1.137 2004/02/23 23:03:10 tgl Exp $
+ * $PostgreSQL: pgsql/src/backend/access/transam/xlog.c,v 1.138 2004/03/22 04:16:57 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -2762,7 +2762,7 @@ BootStrapXLOG(void)
static char *
str_time(time_t tnow)
{
- static char buf[32];
+ static char buf[128];
strftime(buf, sizeof(buf),
"%Y-%m-%d %H:%M:%S %Z",