2
0
mirror of https://github.com/openvswitch/ovs synced 2025-08-22 01:51:26 +00:00

datapath-windows: Fix warning from the powershell module

This patch fixes the warning when datapath-windows/misc/OVS.psm1 is
imported.

Signed-off-by: Alin Gabriel Serdean <aserdean@cloudbasesolutions.com>
Reported-by: Hemanth Kumar Mantri <mantri@nutanix.com>
Reported-at: https://github.com/openvswitch/ovs-issues/issues/69
Acked-by: Eitan Eliahu <eliahue@vmware.com>
Signed-off-by: Gurucharan Shetty <gshetty@nicira.com>
This commit is contained in:
Alin Serdean 2015-05-04 16:44:49 +00:00 committed by Gurucharan Shetty
parent 8aaa125dab
commit 2fe3020f5c

View File

@ -1,5 +1,5 @@
<#
Copyright 2014 Cloudbase Solutions Srl
Copyright 2014, 2015 Cloudbase Solutions Srl
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
@ -57,7 +57,7 @@ function Set-VMNetworkAdapterOVSPort
$retVal = $vsms.ModifyResourceSettings(@($sd.GetText(1)))
try
{
Check-WMIReturnValue $retVal
CheckWMIReturnValue $retVal
}
catch
{
@ -142,7 +142,7 @@ function Get-VMNetworkAdapterWithOVSPort
}
}
function Check-WMIReturnValue($retVal)
function CheckWMIReturnValue($retVal)
{
if ($retVal.ReturnValue -ne 0)
{
@ -206,3 +206,5 @@ function Set-VMNetworkAdapterOVSPortDirect
$vnic[0] | Set-VMNetworkAdapterOVSPort -OVSPortName $OVSPortName
}
}
Export-ModuleMember -function Set-*, Get-*