From: Alin Serdean Date: Mon, 6 Nov 2017 15:33:34 +0000 (+0200) Subject: datapath-windows: prettify logging in iphelper X-Git-Tag: v2.12.3~2426 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=d3beb55e7f27c93439491fbf489118a8fde77237;p=mirror_ovs.git datapath-windows: prettify logging in iphelper Found by inspection. Signed-off-by: Alin Gabriel Serdean Acked-by: Shashank Ram --- 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) {