Fossil

Check-in [16eae22891]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Fix typo in "finding home dir" error error message.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 16eae22891ad25fc768ad6c4b13ebba1dc2b54b6
User & Date: bch 2009-06-14 15:09:13.000
References
2009-06-15
03:20 Ticket [e3c34af10d] can't run fossil clone command when not at tty status still Open with 1 other change artifact: 37c772e8bd user: bharder
Context
2009-06-20
13:06
Fix a bug that prevented the IP address of website users from being recorded in the administator logs. check-in: 266b6127f6 user: drh tags: trunk
2009-06-14
15:09
Fix typo in "finding home dir" error error message. check-in: 16eae22891 user: bch tags: trunk
2009-06-07
17:45
Add the logo to the repository. Make the logo appear on the homepage. check-in: 5882d97495 user: drh tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Changes to src/db.c.
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
      zHome = getenv("HOMEPATH");
    }
  }
#else
  zHome = getenv("HOME");
#endif
  if( zHome==0 ){
    db_err("cannot local home directory");
  }
#ifdef __MINGW32__
  /* . filenames give some window systems problems and many apps problems */
  zDbName = mprintf("%//_fossil", zHome);
#else
  zDbName = mprintf("%s/.fossil", zHome);
#endif







|







658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
      zHome = getenv("HOMEPATH");
    }
  }
#else
  zHome = getenv("HOME");
#endif
  if( zHome==0 ){
    db_err("cannot locate home directory");
  }
#ifdef __MINGW32__
  /* . filenames give some window systems problems and many apps problems */
  zDbName = mprintf("%//_fossil", zHome);
#else
  zDbName = mprintf("%s/.fossil", zHome);
#endif