From 88dabc17f4b4e2c3b9c41dd7fa30a8a06ac2d770 Mon Sep 17 00:00:00 2001 From: Zorro Lang Date: Thu, 8 Sep 2016 10:21:35 +1000 Subject: [PATCH] xfs_quota: fix missing break after foreign_allowed option New quota "-f" has been brought in by: 29647c8 xfs_quota: add capabilities for use on non-XFS filesystems But Coverity Scan find a missing break in quota/init.c: init() function. Signed-off-by: Zorro Lang Reviewed-by: Eric Sandeen Signed-off-by: Dave Chinner --- quota/init.c | 1 + 1 file changed, 1 insertion(+) diff --git a/quota/init.c b/quota/init.c index 44be3222b..2c18c8b0e 100644 --- a/quota/init.c +++ b/quota/init.c @@ -153,6 +153,7 @@ init( break; case 'f': foreign_allowed = true; + break; case 't': mtab_file = optarg; break; -- 2.47.2