]> git.proxmox.com Git - mirror_ovs.git/commitdiff
datapath-windows: prettify logging in iphelper
authorAlin Serdean <aserdean@cloudbasesolutions.com>
Mon, 6 Nov 2017 15:33:34 +0000 (17:33 +0200)
committerAlin Gabriel Serdean <aserdean@ovn.org>
Wed, 29 Nov 2017 14:51:10 +0000 (16:51 +0200)
Found by inspection.

Signed-off-by: Alin Gabriel Serdean <aserdean@cloudbasesolutions.com>
Acked-by: Shashank Ram <shashank08@gmail.com>
datapath-windows/ovsext/IpHelper.c

index 548833d2a3edcf2263248249945f47fa357cd8f3..e995e56aec7dd1033eb5f8b9cc319f8219b9247d 100644 (file)
@@ -938,7 +938,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("Failed to register IP route change, status: %x.",
                       status);
         goto register_cleanup;
     }
@@ -947,7 +947,8 @@ OvsRegisterChangeNotification()
                                           NULL, TRUE,
                                           &unicastIPNotificationHandle);
     if (status != STATUS_SUCCESS) {
-        OVS_LOG_ERROR("Fail to regiter unicast ip change, status: %x.", status);
+        OVS_LOG_ERROR("Failed to register UNICAST IP change, status: %x.",
+                      status);
     }
 register_cleanup:
     if (status != STATUS_SUCCESS) {