]> git.proxmox.com Git - pve-firewall.git/commitdiff
fix error message
authorDietmar Maurer <dietmar@proxmox.com>
Thu, 30 Oct 2014 11:52:29 +0000 (12:52 +0100)
committerDietmar Maurer <dietmar@proxmox.com>
Thu, 30 Oct 2014 11:52:29 +0000 (12:52 +0100)
src/PVE/Firewall.pm

index 76684f9676ddc5a49bfcd3ab61b4725d72e8bf75..ad52ee724163533760ce4a55398d5c15992ac237 100644 (file)
@@ -814,7 +814,7 @@ sub parse_address_list {
        $ipversion = Net::IP::ip_get_version($elem); #fixme : don't work with range
     }
 
-    die "you can use a range in a list\n" if $iprange && $count > 1;
+    die "you can't use a range in a list\n" if $iprange && $count > 1;
     return $ipversion;
 }