diff options
-rw-r--r-- | lib/util/time.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/lib/util/time.c b/lib/util/time.c index 7c1532a230..770ebc4374 100644 --- a/lib/util/time.c +++ b/lib/util/time.c @@ -384,11 +384,10 @@ _PUBLIC_ char *timestring(TALLOC_CTX *mem_ctx, time_t t) } #ifdef HAVE_STRFTIME - /* some versions of gcc complain about using %c. This is a bug - in the gcc warning, not a bug in this code. See a recent - strftime() manual page for details. - */ - strftime(tempTime,sizeof(tempTime)-1,"%c %Z",tm); + /* Some versions of gcc complain about using some special format + * specifiers. This is a bug in gcc, not a bug in this code. See a + * recent strftime() manual page for details. */ + strftime(tempTime,sizeof(tempTime)-1,"%a %b %e %X %Y %Z",tm); TimeBuf = talloc_strdup(mem_ctx, tempTime); #else TimeBuf = talloc_strdup(mem_ctx, asctime(tm)); |