From aa5f34f2109a02db7887c220c5a35b6a8ee3e6c8 Mon Sep 17 00:00:00 2001 From: Frederic Crozat Date: Thu, 4 Aug 2011 16:04:43 +0200 Subject: [PATCH] cryptsetup: accept "none" option --- src/cryptsetup.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/cryptsetup.c b/src/cryptsetup.c index cf288de..ac7b6d6 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; -- 1.7.3.4