cluster: RHEL6 - mkfs.gfs2: Add missing 'K' option

Bob Peterson rpeterso at fedoraproject.org
Fri Sep 13 18:17:34 UTC 2013


Gitweb:        http://git.fedorahosted.org/git/?p=cluster.git;a=commitdiff;h=e8a40d5346ced4898137ffee58f93e145c1bae7c
Commit:        e8a40d5346ced4898137ffee58f93e145c1bae7c
Parent:        136be5fd39fc6a2f1a277e5f8c9be542e514a538
Author:        Bob Peterson <rpeterso at redhat.com>
AuthorDate:    Fri Sep 13 11:39:42 2013 -0500
Committer:     Bob Peterson <rpeterso at redhat.com>
CommitterDate: Fri Sep 13 11:39:42 2013 -0500

mkfs.gfs2: Add missing 'K' option

Before this patch, we tested for the 'K' option, but we were not
allowing it in the options to mkfs.gfs2. This patch adds the missing
'K' option to the call to getopt.

rhbz#1007970
---
 gfs2/mkfs/main_mkfs.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/gfs2/mkfs/main_mkfs.c b/gfs2/mkfs/main_mkfs.c
index 7163cf1..b132af8 100644
--- a/gfs2/mkfs/main_mkfs.c
+++ b/gfs2/mkfs/main_mkfs.c
@@ -108,7 +108,7 @@ static void decode_arguments(int argc, char *argv[], struct gfs2_sbd *sdp)
 	sdp->orig_fssize = 0;
 
 	while (cont) {
-		optchar = getopt(argc, argv, "-b:c:DhJ:j:Op:qr:t:u:VX");
+		optchar = getopt(argc, argv, "-b:c:DhJ:j:KOp:qr:t:u:VX");
 
 		switch (optchar) {
 		case 'b':


More information about the cluster-commits mailing list