mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-23 11:39:53 +00:00
Fail if detecting an unknown option
This patch changes qemu-img to exit if an unknown option is detected, instead of trying to continue with a set of arguments which may be incorrect. Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
This commit is contained in:
parent
b8fb60da2d
commit
ef87394c08
@ -309,6 +309,7 @@ static int img_create(int argc, char **argv)
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
switch(c) {
|
switch(c) {
|
||||||
|
case '?':
|
||||||
case 'h':
|
case 'h':
|
||||||
help();
|
help();
|
||||||
break;
|
break;
|
||||||
@ -477,6 +478,7 @@ static int img_check(int argc, char **argv)
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
switch(c) {
|
switch(c) {
|
||||||
|
case '?':
|
||||||
case 'h':
|
case 'h':
|
||||||
help();
|
help();
|
||||||
break;
|
break;
|
||||||
@ -555,6 +557,7 @@ static int img_commit(int argc, char **argv)
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
switch(c) {
|
switch(c) {
|
||||||
|
case '?':
|
||||||
case 'h':
|
case 'h':
|
||||||
help();
|
help();
|
||||||
break;
|
break;
|
||||||
@ -693,6 +696,7 @@ static int img_convert(int argc, char **argv)
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
switch(c) {
|
switch(c) {
|
||||||
|
case '?':
|
||||||
case 'h':
|
case 'h':
|
||||||
help();
|
help();
|
||||||
break;
|
break;
|
||||||
@ -1097,6 +1101,7 @@ static int img_info(int argc, char **argv)
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
switch(c) {
|
switch(c) {
|
||||||
|
case '?':
|
||||||
case 'h':
|
case 'h':
|
||||||
help();
|
help();
|
||||||
break;
|
break;
|
||||||
@ -1174,6 +1179,7 @@ static int img_snapshot(int argc, char **argv)
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
switch(c) {
|
switch(c) {
|
||||||
|
case '?':
|
||||||
case 'h':
|
case 'h':
|
||||||
help();
|
help();
|
||||||
return 0;
|
return 0;
|
||||||
@ -1289,6 +1295,7 @@ static int img_rebase(int argc, char **argv)
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
switch(c) {
|
switch(c) {
|
||||||
|
case '?':
|
||||||
case 'h':
|
case 'h':
|
||||||
help();
|
help();
|
||||||
return 0;
|
return 0;
|
||||||
@ -1503,6 +1510,7 @@ static int img_resize(int argc, char **argv)
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
switch(c) {
|
switch(c) {
|
||||||
|
case '?':
|
||||||
case 'h':
|
case 'h':
|
||||||
help();
|
help();
|
||||||
break;
|
break;
|
||||||
|
Loading…
Reference in New Issue
Block a user