From e4052cb95af2250e29984ea9fe26cc40fac47713 Mon Sep 17 00:00:00 2001 From: YAMAMOTO Takashi Date: Tue, 2 Jul 2013 11:04:02 +0900 Subject: [PATCH] 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 --- lib/netdev-bsd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.43.0