Differences From:
File
src/db.c
part of check-in
[3f706b92a5]
- Change the "omitsign" setting into "clearsign" and invert its sense.
by
drh on
2008-06-06 20:11:16.
[view]
To:
File
src/db.c
part of check-in
[9d23230322]
- Use the %/ substitution instead of %s when constructing windows pathnames.
by
drh on
2008-07-15 02:01:18.
[view]
@@ -572,9 +572,9 @@
db_err("cannot local home directory");
}
#ifdef __MINGW32__
/* . filenames give some window systems problems and many apps problems */
- zDbName = mprintf("%s/_fossil", zHome);
+ zDbName = mprintf("%//_fossil", zHome);
#else
zDbName = mprintf("%s/.fossil", zHome);
#endif
if( g.configOpen ) return;