From aece0af7ca010e25b35d65aa8790ffaee7816a13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Buchm=C3=BCller?= Date: Wed, 18 Jan 2017 04:21:51 +0100 Subject: [PATCH] open-iscsi: add missing break to patch --- srcpkgs/open-iscsi/patches/fix-musl.patch | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/srcpkgs/open-iscsi/patches/fix-musl.patch b/srcpkgs/open-iscsi/patches/fix-musl.patch index 9fe8406d54..8b8fd663e2 100644 --- a/srcpkgs/open-iscsi/patches/fix-musl.patch +++ b/srcpkgs/open-iscsi/patches/fix-musl.patch @@ -17,10 +17,11 @@ Later check this flag and error out, if it is set. struct sigaction sa_old; struct sigaction sa_new; struct list_head ifaces; -@@ -3426,6 +3427,10 @@ +@@ -3426,6 +3427,11 @@ break; case 'h': usage(0); ++ break; + case '?': + log_error("unrecognized character '%c'", optopt); + argerror = 1;