xend: fixes a typo in the PIF class of the Xen-API code.
authorKeir Fraser <keir.fraser@citrix.com>
Tue, 19 Aug 2008 09:48:39 +0000 (10:48 +0100)
committerKeir Fraser <keir.fraser@citrix.com>
Tue, 19 Aug 2008 09:48:39 +0000 (10:48 +0100)
Signed-off-by: Stefan Berger <stefanb@us.ibm.com>
tools/python/xen/xend/XendPIF.py

index 2a2e78acc2c8409f7eb4612ef92109d3888cd1d5..60524813f3bc7d155988f7ec543c190c71704e88 100644 (file)
@@ -101,7 +101,7 @@ def linux_get_mtu(device):
 def linux_get_mac(device):
     return _linux_get_pif_param(device, 'link/ether')
 
-def _linux_get_pif_parm(device, param_name):
+def _linux_get_pif_param(device, param_name):
     ip_get_dev_data = 'ip link show %s' % device
     rc, output = commands.getstatusoutput(ip_get_dev_data)
     if rc == 0: