From d7ec68a6b852de05172248c1dd13bc6d094df4d3 Mon Sep 17 00:00:00 2001 From: corvid Date: Fri, 23 May 2014 02:49:19 +0000 Subject: paths MSG consistency --- src/paths.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/paths.cc') 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 { -- cgit v1.2.3