summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2015-05-10 11:12:32 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2015-05-10 11:12:32 +0200
commit0c12bb634c60d7dca7b9d8936835efbb75a7fdfa (patch)
treec268b677342d80500277c97a12e9b4788187cc17
parent3331613933e7d53f9fdd09f2175eb27d4a72aaaa (diff)
downloadpgfuse-0c12bb634c60d7dca7b9d8936835efbb75a7fdfa.tar.gz
pgfuse-0c12bb634c60d7dca7b9d8936835efbb75a7fdfa.tar.bz2
fixed noatime
-rw-r--r--pgfuse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pgfuse.c b/pgfuse.c
index beabf14..5dc5f53 100644
--- a/pgfuse.c
+++ b/pgfuse.c
@@ -1586,7 +1586,7 @@ enum {
static struct fuse_opt pgfuse_opts[] = {
PGFUSE_OPT( "ro", read_only, 1 ),
- PGFUSE_OPT( "noatime", noatime, 0 ),
+ PGFUSE_OPT( "noatime", noatime, 1 ),
PGFUSE_OPT( "blocksize=%d", block_size, DEFAULT_BLOCK_SIZE ),
FUSE_OPT_KEY( "-h", KEY_HELP ),
FUSE_OPT_KEY( "--help", KEY_HELP ),