Diff
Not logged in

Differences From:

File src/db.c part of check-in [397fa9bf78] - After any kind of database error, include in the error message a warning to the user that it might be wise to run "fossil all rebuild". by drh on 2009-11-06 03:10:32. [view]

To:

File src/db.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]

@@ -702,8 +702,9 @@
     db_err("cannot locate home directory - "
            "please set the HOME environment variable");
   }
 #endif
+  g.zHome = mprintf("%/", zHome);
 #ifdef __MINGW32__
   /* . filenames give some window systems problems and many apps problems */
   zDbName = mprintf("%//_fossil", zHome);
 #else