diff mbox

[ovs-dev,31/40] datapath-windows: prettify logging in iphelper

Message ID 20170714044033.15196-32-aserdean@cloudbasesolutions.com
State Accepted
Headers show

Commit Message

Alin Serdean July 14, 2017, 4:40 a.m. UTC
Found by inspection.

Signed-off-by: Alin Gabriel Serdean <aserdean@cloudbasesolutions.com>
---
 datapath-windows/ovsext/IpHelper.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
diff mbox

Patch

diff --git a/datapath-windows/ovsext/IpHelper.c b/datapath-windows/ovsext/IpHelper.c
index 555351a..cb97835 100644
--- a/datapath-windows/ovsext/IpHelper.c
+++ b/datapath-windows/ovsext/IpHelper.c
@@ -933,7 +933,7 @@  OvsRegisterChangeNotification()
     status = NotifyRouteChange2(AF_INET, OvsChangeCallbackIpRoute, &dummy,
                                 TRUE, &ipRouteNotificationHandle);
     if (status != STATUS_SUCCESS) {
-        OVS_LOG_ERROR("Fail to regiter ip route change, status: %x.",
+        OVS_LOG_ERROR("Fail to register IP route change, status: %x.",
                       status);
         goto register_cleanup;
     }
@@ -942,7 +942,8 @@  OvsRegisterChangeNotification()
                                           NULL, TRUE,
                                           &unicastIPNotificationHandle);
     if (status != STATUS_SUCCESS) {
-        OVS_LOG_ERROR("Fail to regiter unicast ip change, status: %x.", status);
+        OVS_LOG_ERROR("Fail to register UNICAST IP change, status: %x.",
+                      status);
     }
 register_cleanup:
     if (status != STATUS_SUCCESS) {