aboutsummaryrefslogtreecommitdiffhomepage
path: root/database.cc
diff options
context:
space:
mode:
authorGravatar Carl Worth <cworth@cworth.org>2009-10-20 10:14:00 -0700
committerGravatar Carl Worth <cworth@cworth.org>2009-10-20 10:14:00 -0700
commit968feafbad724da29c7fb5d48f6d363150e48caf (patch)
tree734363feda1ddbb2f521719521dc97086f6242c1 /database.cc
parent67a0ee2ebb90229d92a5e9a7c676ff1a95fc1008 (diff)
notmuch_database_open: Fix error message for file-not-found.
I was incorrectly using the return value of stat (-1) instead of errno (ENOENT) to try to construct the error message here. Also, while we're here, reword the error message to not have "stat" in it, which in spite of what a Unix programmer will tell you, is not actually a word.
Diffstat (limited to 'database.cc')
-rw-r--r--database.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/database.cc b/database.cc
index 528ae115..a5365103 100644
--- a/database.cc
+++ b/database.cc
@@ -450,8 +450,8 @@ notmuch_database_open (const char *path)
err = stat (notmuch_path, &st);
if (err) {
- fprintf (stderr, "Error: Cannot stat %s: %s\n",
- notmuch_path, strerror (err));
+ fprintf (stderr, "Error opening database at %s: %s\n",
+ notmuch_path, strerror (errno));
goto DONE;
}