projects
/
notmuch
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
notmuch_database_open: Fix error message for file-not-found.
[notmuch]
/
database.cc
diff --git
a/database.cc
b/database.cc
index 528ae1154b48d9b4428c214355700e96f5123564..a53651035d9febd791b56c5d2b631b9d4db96da7 100644
(file)
--- 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 st
at %s: %s\n",
- notmuch_path, strerror (err));
+ fprintf (stderr, "Error
opening database
at %s: %s\n",
+ notmuch_path, strerror (err
no
));
goto DONE;
}