summaryrefslogtreecommitdiff
path: root/datapath-windows/ovsext/Vxlan.c
diff options
context:
space:
mode:
authorSorin Vinturis <svinturis@cloudbasesolutions.com>2015-07-15 08:30:09 +0000
committerBen Pfaff <blp@nicira.com>2015-07-16 11:41:50 -0700
commit3f11b876befc0629ca2a174546fa3f6b43d44e81 (patch)
treecb9434e090b1dfa894aea4c4b374f8025fee012f /datapath-windows/ovsext/Vxlan.c
parenta6c06d92b68954a1db6e97d103e08d92e05830e0 (diff)
downloadopenvswitch-3f11b876befc0629ca2a174546fa3f6b43d44e81.tar.gz
datapath-windows: Fixed spelling errors in OVS
Solved some spelling errors observed in the datapath code. Signed-off-by: Sorin Vinturis <svinturis@cloudbasesolutions.com> Signed-off-by: Ben Pfaff <blp@nicira.com>
Diffstat (limited to 'datapath-windows/ovsext/Vxlan.c')
-rw-r--r--datapath-windows/ovsext/Vxlan.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/datapath-windows/ovsext/Vxlan.c b/datapath-windows/ovsext/Vxlan.c
index f700b76f8..bcd2beb0b 100644
--- a/datapath-windows/ovsext/Vxlan.c
+++ b/datapath-windows/ovsext/Vxlan.c
@@ -114,11 +114,11 @@ OvsInitVxlanTunnel(PIRP irp,
vport->priv = (PVOID)vxlanPort;
if (!OvsIsTunnelFilterCreated(gOvsSwitchContext, udpDestPort)) {
- status = OvsTunelFilterCreate(irp,
- udpDestPort,
- &vxlanPort->filterID,
- callback,
- tunnelContext);
+ status = OvsTunnelFilterCreate(irp,
+ udpDestPort,
+ &vxlanPort->filterID,
+ callback,
+ tunnelContext);
} else {
status = STATUS_OBJECT_NAME_EXISTS;
}
@@ -151,10 +151,10 @@ OvsCleanupVxlanTunnel(PIRP irp,
vxlanPort = (POVS_VXLAN_VPORT)vport->priv;
if (vxlanPort->filterID != 0) {
- status = OvsTunelFilterDelete(irp,
- vxlanPort->filterID,
- callback,
- tunnelContext);
+ status = OvsTunnelFilterDelete(irp,
+ vxlanPort->filterID,
+ callback,
+ tunnelContext);
} else {
OvsFreeMemoryWithTag(vport->priv, OVS_VXLAN_POOL_TAG);
vport->priv = NULL;