From 9ef7eba54f7d888fac613e95045656d1f436783c Mon Sep 17 00:00:00 2001 From: allen Date: Sat, 20 Oct 2001 14:00:06 +0000 Subject: Print out times with the same format git-svn-id: http://svn.cactuscode.org/flesh/trunk@2416 17b73243-c579-4c4c-a9d2-2d5706c11dac --- src/util/Time.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/Time.c b/src/util/Time.c index d46e1c33..745d9b51 100644 --- a/src/util/Time.c +++ b/src/util/Time.c @@ -80,7 +80,7 @@ int Util_CurrentDate(int len, char *now) { int retval; time_t timep; - const char *fmt = "%a %d %b %Y"; + const char *fmt = "%b %d %Y"; timep = time(NULL); strftime(now, 50, fmt, localtime(&timep)); -- cgit v1.2.3