]> git.cameronkatri.com Git - pw-darwin.git/blobdiff - pw/pw_log.c
Sort sections.
[pw-darwin.git] / pw / pw_log.c
index e11e5ee1cc2bff933e9d2b2203f0b1fc6cf7ce3d..fc85828b5bbfe4eb751421b3b4a64ceeb8a76826 100644 (file)
@@ -26,7 +26,7 @@
 
 #ifndef lint
 static const char rcsid[] =
 
 #ifndef lint
 static const char rcsid[] =
-       "$Id$";
+  "$FreeBSD$";
 #endif /* not lint */
 
 #include <fcntl.h>
 #endif /* not lint */
 
 #include <fcntl.h>
@@ -55,7 +55,8 @@ pw_log(struct userconf * cnf, int mode, int which, char const * fmt,...)
 
                        if ((name = getenv("LOGNAME")) == NULL && (name = getenv("USER")) == NULL)
                                name = "unknown";
 
                        if ((name = getenv("LOGNAME")) == NULL && (name = getenv("USER")) == NULL)
                                name = "unknown";
-                       strftime(nfmt, sizeof nfmt, "%d-%b-%Y %R ", t);
+                       /* ISO 8601 International Standard Date format */
+                       strftime(nfmt, sizeof nfmt, "%Y-%m-%d %T ", t);
                        l = strlen(nfmt);
                        sprintf(nfmt + strlen(nfmt), "[%s:%s%s] %s\n", name, Which[which], Modes[mode], fmt);
                        va_start(argp, fmt);
                        l = strlen(nfmt);
                        sprintf(nfmt + strlen(nfmt), "[%s:%s%s] %s\n", name, Which[which], Modes[mode], fmt);
                        va_start(argp, fmt);