From dbe26308a6fd9924e45943461e4fc5d0ac1758bf Mon Sep 17 00:00:00 2001 From: Nikita Fuchs Date: Mon, 24 May 2021 17:27:58 +0200 Subject: [PATCH] provide explanation for common error source --- .gitignore | 1 + encfs/main.cpp | 1 + 2 files changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 796b96d..c11d26b 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /build +.history \ No newline at end of file diff --git a/encfs/main.cpp b/encfs/main.cpp index 71dfd71..60463d3 100644 --- a/encfs/main.cpp +++ b/encfs/main.cpp @@ -806,6 +806,7 @@ int main(int argc, char *argv[]) { FILE *out = fdopen(oldStderr, "a"); // xgroup(usage) fputs(_("fuse failed. Common problems:\n" + " - your volume is already mounted\n" " - fuse kernel module not installed (modprobe fuse)\n" " - invalid options -- see usage message\n"), out);