summaryrefslogtreecommitdiff
path: root/datapath-windows
diff options
context:
space:
mode:
authorAlin Serdean <aserdean@cloudbasesolutions.com>2017-11-06 17:33:34 +0200
committerAlin Gabriel Serdean <aserdean@ovn.org>2017-11-29 16:51:10 +0200
commitd3beb55e7f27c93439491fbf489118a8fde77237 (patch)
tree4008f3ae4a5c69f64f4087793b6377a4a1cd020f /datapath-windows
parentcba5d1489bf89ff81472986b18b9b13c5b5f8748 (diff)
downloadopenvswitch-d3beb55e7f27c93439491fbf489118a8fde77237.tar.gz
datapath-windows: prettify logging in iphelper
Found by inspection. Signed-off-by: Alin Gabriel Serdean <aserdean@cloudbasesolutions.com> Acked-by: Shashank Ram <shashank08@gmail.com>
Diffstat (limited to 'datapath-windows')
-rw-r--r--datapath-windows/ovsext/IpHelper.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/datapath-windows/ovsext/IpHelper.c b/datapath-windows/ovsext/IpHelper.c
index 548833d2a..e995e56ae 100644
--- a/datapath-windows/ovsext/IpHelper.c
+++ b/datapath-windows/ovsext/IpHelper.c
@@ -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) {