From: Frederic Crozat Date: Thu, 4 Aug 2011 14:04:43 +0000 (+0200) Subject: cryptsetup: accept "none" option X-Git-Tag: v34~8 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=41e6f28acc906960f21658c94ac79652705ded0c;p=elogind.git cryptsetup: accept "none" option --- diff --git a/src/cryptsetup.c b/src/cryptsetup.c index cf288de63..ac7b6d6c3 100644 --- a/src/cryptsetup.c +++ b/src/cryptsetup.c @@ -110,7 +110,7 @@ static int parse_one_option(const char *option) { return 0; } - } else + } else if (!streq(option, "none")) log_error("Encountered unknown /etc/crypttab option '%s', ignoring.", option); return 0;