mirror of https://github.com/xqemu/xqemu.git
allow '-nics 0'
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@802 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
db45c29a65
commit
3a1bc175ea
2
vl.c
2
vl.c
|
@ -2118,7 +2118,7 @@ int main(int argc, char **argv)
|
||||||
break;
|
break;
|
||||||
case 16:
|
case 16:
|
||||||
nb_nics = atoi(optarg);
|
nb_nics = atoi(optarg);
|
||||||
if (nb_nics < 1 || nb_nics > MAX_NICS) {
|
if (nb_nics < 0 || nb_nics > MAX_NICS) {
|
||||||
fprintf(stderr, "qemu: invalid number of network interfaces\n");
|
fprintf(stderr, "qemu: invalid number of network interfaces\n");
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue