summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2015-06-11 15:33:10 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2015-06-11 15:33:10 +0200
commit25f1b2672ad5c95de802496eb2dafd30c83d19c5 (patch)
treee4e02faf7e56a993b7102c52c7294553d36f9a3e
parent23284e9ac4733b0d1f9bd18a6a73d75ca71cdf81 (diff)
downloadpgfuse-25f1b2672ad5c95de802496eb2dafd30c83d19c5.tar.gz
pgfuse-25f1b2672ad5c95de802496eb2dafd30c83d19c5.tar.bz2
fixed pgfuse specific options in usage
-rw-r--r--pgfuse.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/pgfuse.c b/pgfuse.c
index 0bdcf94..b3b239b 100644
--- a/pgfuse.c
+++ b/pgfuse.c
@@ -1754,9 +1754,9 @@ static void print_usage( char* progname )
" -V --version print version\n"
"\n"
"PgFuse options:\n"
- " ro mount filesystem read-only, do not change data in database\n"
- " noatime do not try to keep access time up to date on every read (only on close)\n"
- " blocksize=<bytes> block size to use for storage of data\n"
+ " -o ro mount filesystem read-only, do not change data in database\n"
+ " -o noatime do not try to keep access time up to date on every read (only on close)\n"
+ " -o blocksize=<bytes> block size to use for storage of data\n"
"\n",
progname
);