From: Alin Serdean <[email protected]> Found by inspection.
Signed-off-by: Alin Gabriel Serdean <[email protected]> --- v2: s/Fail/Failed. Suggested by: Shashank Ram [email protected] --- datapath-windows/ovsext/IpHelper.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/datapath-windows/ovsext/IpHelper.c b/datapath-windows/ovsext/IpHelper.c index 548833d..e995e56 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) { -- 2.10.2.windows.1 _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
