]> git.proxmox.com Git - pve-manager.git/commitdiff
fixup: while not an error here a trailing semicolon is good to have
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Thu, 13 Jun 2019 09:08:28 +0000 (11:08 +0200)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Thu, 13 Jun 2019 09:08:28 +0000 (11:08 +0200)
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
PVE/API2/Network.pm

index e58c71106a29c1d825809276b63aa6a635021fb5..0fa0ac80251c367e2f8d974bdeb30e5dbc1db04d 100644 (file)
@@ -283,7 +283,7 @@ my $check_ipv6_settings = sub {
     my $type = ($binip eq $binmask) ? 'ANYCAST' : Net::IP::ip_iptypev6($binip);
 
     if (defined($type) && $type !~ /^(?:(?:GLOBAL|(?:UNIQUE|LINK)-LOCAL)-UNICAST)$/) {
-       raise_param_exc({ address => "$address with type '$type', cannot be used as host IPv6 address." })
+       raise_param_exc({ address => "$address with type '$type', cannot be used as host IPv6 address." });
     }
 };