diff options
author | corvid <devnull@localhost> | 2014-05-23 02:49:19 +0000 |
---|---|---|
committer | corvid <devnull@localhost> | 2014-05-23 02:49:19 +0000 |
commit | d7ec68a6b852de05172248c1dd13bc6d094df4d3 (patch) | |
tree | 4cec18aab72c2c6b9bf4c85cb32b25710038f0e4 /src/paths.cc | |
parent | 665c35b337f536a512a09aa70d1bde128c19984e (diff) |
paths MSG consistency
Diffstat (limited to 'src/paths.cc')
-rw-r--r-- | src/paths.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/paths.cc b/src/paths.cc index 32478728..18712995 100644 --- a/src/paths.cc +++ b/src/paths.cc @@ -38,16 +38,16 @@ void Paths::init(void) oldWorkingDir = dGetcwd(); rc = chdir("/tmp"); if (rc == -1) { - MSG("paths: error changing directory to /tmp: %s\n", + MSG("paths: Error changing directory to /tmp: %s\n", dStrerror(errno)); } path = dStrconcat(dGethomedir(), "/.dillo", NULL); if (stat(path, &st) == -1) { if (errno == ENOENT) { - MSG("paths: creating directory %s.\n", path); + MSG("paths: Creating directory %s\n", path); if (mkdir(path, 0700) < 0) { - MSG("paths: error creating directory %s: %s\n", + MSG("paths: Error creating directory %s: %s\n", path, dStrerror(errno)); } } else { |