summaryrefslogtreecommitdiff
path: root/src/paths.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/paths.cc')
-rw-r--r--src/paths.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/paths.cc b/src/paths.cc
index 32478728..bb233de8 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 {