sim-card
/
qemu
Archived
10
0
Fork 0

Make the set_link cmd handle multiple nics.

Signed-off-by: Edgar E. Iglesias <edgar.iglesias@gmail.com>


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6256 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
edgar_igl 2009-01-09 00:48:28 +00:00
parent 94410b78be
commit dd5de373b7
1 changed files with 2 additions and 1 deletions

3
net.c
View File

@ -1703,7 +1703,8 @@ int do_set_link(const char *name, const char *up_or_down)
for (vlan = first_vlan; vlan != NULL; vlan = vlan->next)
for (vc = vlan->first_client; vc != NULL; vc = vc->next)
if (strcmp(vc->name, name) == 0)
break;
goto done;
done:
if (!vc) {
term_printf("could not find network device '%s'", name);