From e71d009bd1116a5b962489f6a2d617f6e6cc423f Mon Sep 17 00:00:00 2001 From: Hiltjo Posthuma Date: Fri, 4 Apr 2014 19:03:54 +0200 Subject: [PATCH] mount: add defaults option, it does nothing Signed-off-by: Hiltjo Posthuma --- mount.c | 1 + 1 file changed, 1 insertion(+) diff --git a/mount.c b/mount.c index 6afa438..d099586 100644 --- a/mount.c +++ b/mount.c @@ -14,6 +14,7 @@ struct { const char *notopt; unsigned long v; } optnames[] = { + { "defaults", NULL, 0 }, { "remount", NULL, MS_REMOUNT }, { "ro", "rw", MS_RDONLY }, { "sync", "async", MS_SYNCHRONOUS },