Diff
Not logged in

Differences From:

File src/info.c part of check-in [8c8f8616a6] - Add an "finfo" command to give file history. by drh on 2009-10-31 15:07:45. [view]

To:

File src/info.c part of check-in [d5695157d0] - Deal with windows filename aliasing in the "all" command. Ticket 974618fe5a8. Also display the home directory for windows users with the "info" command since the home directory is non-obvious in windows. by drh on 2009-11-11 16:21:19. [view]

@@ -128,8 +128,13 @@
     db_record_repository_filename(0);
     printf("project-name: %s\n", db_get("project-name", "<unnamed>"));
     printf("repository:   %s\n", db_lget("repository", ""));
     printf("local-root:   %s\n", g.zLocalRoot);
+#ifdef __MINGW32__
+    if( g.zHome ){
+      printf("user-home:  : %s\n", g.zHome);
+    }
+#endif
     printf("project-code: %s\n", db_get("project-code", ""));
     printf("server-code:  %s\n", db_get("server-code", ""));
     vid = db_lget_int("checkout", 0);
     if( vid==0 ){