]> git.cameronkatri.com Git - getent-darwin.git/blobdiff - getent.c
Also print UNIX timestamps in getent utmpx output.
[getent-darwin.git] / getent.c
index e6e33a0a430d5bda187a48e3fce4cd72a4cb045c..d19eac6671617d20a1272fea5be851708a82a910 100644 (file)
--- a/getent.c
+++ b/getent.c
@@ -55,8 +55,9 @@ __FBSDID("$FreeBSD$");
 #include <limits.h>
 #include <netdb.h>
 #include <pwd.h>
-#include <stdio.h>
 #include <stdarg.h>
+#include <stdint.h>
+#include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
 #include <unistd.h>
@@ -583,7 +584,9 @@ utmpxprint(const struct utmpx *ut)
        if (ut->ut_type == EMPTY)
                return;
        
-       printf("[%.24s] ", ctime(&ut->ut_tv.tv_sec));
+       printf("[%jd.%06u -- %.24s] ",
+           (intmax_t)ut->ut_tv.tv_sec, (unsigned int)ut->ut_tv.tv_usec,
+           ctime(&ut->ut_tv.tv_sec));
 
        switch (ut->ut_type) {
        case BOOT_TIME: