Diff
Not logged in

Differences From:

File src/db.c part of check-in [915bfd99fe] - Add the --keep option to the "open" and "checkout" commands. Added the --latest option to "checkout". These changes allow one to shift the baseline version and repository of a checkout without changing any files in the checkout. by drh on 2009-05-28 02:44:39. [view]

To:

File src/db.c part of check-in [16eae22891] - Fix typo in "finding home dir" error error message. by bch on 2009-06-14 15:09:13. [view]

@@ -661,9 +661,9 @@
 #else
   zHome = getenv("HOME");
 #endif
   if( zHome==0 ){
-    db_err("cannot local home directory");
+    db_err("cannot locate home directory");
   }
 #ifdef __MINGW32__
   /* . filenames give some window systems problems and many apps problems */
   zDbName = mprintf("%//_fossil", zHome);