Skip to content

Commit

Permalink
datapath-windows: prettify logging in iphelper
Browse files Browse the repository at this point in the history
Found by inspection.

Signed-off-by: Alin Gabriel Serdean <aserdean@cloudbasesolutions.com>
Acked-by: Shashank Ram <shashank08@gmail.com>
  • Loading branch information
Alin Serdean authored and aserdean committed Nov 29, 2017
1 parent cba5d14 commit d3beb55
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions datapath-windows/ovsext/IpHelper.c
Expand Up @@ -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;
}
Expand All @@ -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) {
Expand Down

0 comments on commit d3beb55

Please sign in to comment.