]> andersk Git - moira.git/blobdiff - clients/stanley/stanley.c
Display user creation times.
[moira.git] / clients / stanley / stanley.c
index c59811353bc5d6e9ded4b07e530b36bf421aecc9..b96c6a540a75593b0b3b8935814ad7a4a5c007cc 100644 (file)
@@ -632,6 +632,7 @@ void show_user_info(char **argv)
              atoi(argv[U_SECURE]) ? "needs" : "does not need");
     }
   printf("Comments: %s\n", argv[U_COMMENT]);
+  printf("Created  by %s on %s.\n", argv[U_CREATOR], argv[U_CREATED]);
   printf("Last mod by %s at %s with %s.\n", argv[U_MODBY], argv[U_MODTIME],
         argv[U_MODWITH]);
 }
@@ -654,6 +655,8 @@ void show_user_info_unformatted(char **argv)
     printf("Secure:                %s secure Account Coupon to register\n",
           atoi(argv[U_SECURE]) ? "Needs" : "Does not need");
   printf("Comments:              %s\n", argv[U_COMMENT]);
+  printf("Created by:            %s\n", argv[U_CREATOR]);
+  printf("Created on:            %s\n", argv[U_CREATED]);
   printf("Last mod by:           %s\n", argv[U_MODBY]);
   printf("Last mod on:           %s\n", argv[U_MODTIME]);
   printf("Last mod with:         %s\n", argv[U_MODWITH]);
This page took 0.027741 seconds and 4 git commands to generate.