X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=lib%2Frtbsd.c;h=b706c20e70c4025ad09475a4a40b41eab43db3e0;hb=10a89ef04df5669c5cdd02f786150a7ab8454e01;hp=c5fe03a395a0ba65fd64a7a0520a5ba4c3974771;hpb=5fcbed7479c5f1d2cc08c3f544f10dbbe8ec0d90;p=sliver-openvswitch.git diff --git a/lib/rtbsd.c b/lib/rtbsd.c index c5fe03a39..b706c20e7 100644 --- a/lib/rtbsd.c +++ b/lib/rtbsd.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011 Gaetano Catalli. + * Copyright (c) 2011, 2013 Gaetano Catalli. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -55,13 +55,13 @@ rtbsd_notifier_register(struct rtbsd_notifier *notifier, notify_sock = socket(PF_ROUTE, SOCK_RAW, 0); if (notify_sock < 0) { VLOG_WARN("could not create PF_ROUTE socket: %s", - strerror(errno)); + ovs_strerror(errno)); return errno; } error = set_nonblocking(notify_sock); if (error) { VLOG_WARN("error set_nonblocking PF_ROUTE socket: %s", - strerror(error)); + ovs_strerror(error)); return error; } } else { @@ -120,7 +120,7 @@ rtbsd_notifier_run(void) VLOG_WARN_RL(&rl, "PF_ROUTE receive buffer overflowed"); } else { VLOG_WARN_RL(&rl, "error reading PF_ROUTE socket: %s", - strerror(errno)); + ovs_strerror(errno)); } rtbsd_report_notify_error(); }