From: Dietmar Maurer Date: Thu, 19 Nov 2015 05:23:12 +0000 (+0100) Subject: avoid access to undefinded var $tag X-Git-Url: https://git.proxmox.com/?p=pve-common.git;a=commitdiff_plain;h=34eb365639774ae3c43a18549aace16b774a820a avoid access to undefinded var $tag --- diff --git a/src/PVE/Network.pm b/src/PVE/Network.pm index 024b9b4..8cd7698 100644 --- a/src/PVE/Network.pm +++ b/src/PVE/Network.pm @@ -174,7 +174,7 @@ my $bridge_add_interface = sub { die "unable to add vlan $tag to interface $iface\n"; } else { system("/sbin/bridge vlan add dev $iface vid 2-4094") == 0 || - die "unable to add vlan $tag to interface $iface\n"; + die "unable to add default vlan tags to interface $iface\n"; } } };