diff options
Diffstat (limited to 'tap-win32.c')
-rw-r--r-- | tap-win32.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tap-win32.c b/tap-win32.c index 13ca5399e3..3279644236 100644 --- a/tap-win32.c +++ b/tap-win32.c @@ -660,7 +660,8 @@ static void tap_win32_send(void *opaque) } } -int tap_win32_init(VLANState *vlan, const char *model, const char *ifname) +int tap_win32_init(VLANState *vlan, const char *model, + const char *name, const char *ifname) { TAPState *s; @@ -672,7 +673,7 @@ int tap_win32_init(VLANState *vlan, const char *model, const char *ifname) return -1; } - s->vc = qemu_new_vlan_client(vlan, model, tap_receive, NULL, s); + s->vc = qemu_new_vlan_client(vlan, model, name, tap_receive, NULL, s); snprintf(s->vc->info_str, sizeof(s->vc->info_str), "tap: ifname=%s", ifname); |