[libvirt] [tck PATCH] Fix typo/bug in get_network_ip

Laine Stump laine at laine.org
Fri Jun 8 15:52:07 UTC 2018


Signed-off-by: Laine Stump <laine at laine.org>
---
 lib/Sys/Virt/TCK.pm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/Sys/Virt/TCK.pm b/lib/Sys/Virt/TCK.pm
index 78d3774..67eb5f0 100644
--- a/lib/Sys/Virt/TCK.pm
+++ b/lib/Sys/Virt/TCK.pm
@@ -1259,7 +1259,7 @@ sub get_network_ip {
     if ($net_mask) {
         $ip = NetAddr::IP->new($net_ip, $net_mask);
     } elsif ($net_prefix) {
-        $ip = NetAddr::IP->new("$net_ip/$net_mask");
+        $ip = NetAddr::IP->new("$net_ip/$net_prefix");
     } else {
         $ip = NetAddr::IP->new("$net_ip");
     }
-- 
2.14.4




More information about the libvir-list mailing list