open-iscsi: add missing break to patch

This commit is contained in:
Jürgen Buchmüller 2017-01-18 04:21:51 +01:00
parent 63aa6eb023
commit aece0af7ca

View file

@ -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;