From: YAMAMOTO Takashi Date: Tue, 2 Jul 2013 02:04:02 +0000 (+0900) Subject: netdev-bsd: Fix a build error. X-Git-Tag: sliver-openvswitch-1.10.90-3~4^2~6 X-Git-Url: http://git.onelab.eu/?p=sliver-openvswitch.git;a=commitdiff_plain;h=e4052cb95af2250e29984ea9fe26cc40fac47713 netdev-bsd: Fix a build error. fix a typo in the following commit. > commit 10a89ef04df5669c5cdd02f786150a7ab8454e01 > Author: Ben Pfaff > Date: Mon Jun 24 10:54:49 2013 -0700 > > Replace all uses of strerror() by ovs_strerror(), for thread safety. > > Signed-off-by: Ben Pfaff Signed-off-by: YAMAMOTO Takashi Signed-off-by: Justin Pettit --- diff --git a/lib/netdev-bsd.c b/lib/netdev-bsd.c index f2cf852d8..401d03a5d 100644 --- a/lib/netdev-bsd.c +++ b/lib/netdev-bsd.c @@ -197,7 +197,7 @@ netdev_bsd_init(void) af_link_sock = socket(AF_LINK, SOCK_DGRAM, 0); status = af_link_sock >= 0 ? 0 : errno; if (status) { - VLOG_ERR("failed to create link socket: %s", Ovs_strerror(status)); + VLOG_ERR("failed to create link socket: %s", ovs_strerror(status)); close(af_inet_sock); af_inet_sock = -1; }