dcavalca / rpms / util-linux

Forked from rpms/util-linux 2 years ago
Clone

Blame SOURCES/0002-losetup-keep-f-and-devname-mutually-exclusive.patch

069435
From 315960fa9a89248e9d56682c1915567d38fef431 Mon Sep 17 00:00:00 2001
069435
From: Karel Zak <kzak@redhat.com>
069435
Date: Thu, 7 Jun 2018 12:05:08 +0200
069435
Subject: [PATCH 2/6] losetup: keep -f and <devname> mutually exclusive
069435
069435
losetup tries to blindly use specified device as well as search for
069435
the first free device, the result is:
069435
069435
 # losetup /dev/loop1 -f /tmp/tfile_loop1
069435
 losetup: /dev/loop1: failed to set up loop device: Invalid argument
069435
069435
fixed version:
069435
069435
 # losetup /dev/loop10 -f img
069435
 losetup: unexpected arguments
069435
069435
Addresses: https://bugzilla.redhat.com/show_bug.cgi?id=1614364
069435
Upstream: http://github.com/karelzak/util-linux/commit/c3f5a0f1d47dbc47f6d21da232d4eb1cfb7905db
069435
Signed-off-by: Karel Zak <kzak@redhat.com>
069435
---
069435
 sys-utils/losetup.c | 3 +++
069435
 1 file changed, 3 insertions(+)
069435
069435
diff --git a/sys-utils/losetup.c b/sys-utils/losetup.c
069435
index 9c479c02d..e80ceacce 100644
069435
--- a/sys-utils/losetup.c
069435
+++ b/sys-utils/losetup.c
069435
@@ -749,6 +749,9 @@ int main(int argc, char **argv)
069435
 		 */
069435
 		act = A_CREATE;
069435
 		file = argv[optind++];
069435
+
069435
+		if (optind < argc)
069435
+			errx(EXIT_FAILURE, _("unexpected arguments"));
069435
 	}
069435
 
069435
 	if (list && !act && optind == argc)
069435
-- 
069435
2.14.4
069435