datapath-windows: Fix warning from the powershell module
authorAlin Serdean <aserdean@cloudbasesolutions.com>
Mon, 4 May 2015 16:44:49 +0000 (16:44 +0000)
committerGurucharan Shetty <gshetty@nicira.com>
Tue, 19 May 2015 14:46:09 +0000 (07:46 -0700)
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>
datapath-windows/misc/OVS.psm1

index d6b6b00..a8ffcae 100644 (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-*