netdev-bsd: Fix a build error.
authorYAMAMOTO Takashi <yamt@mwd.biglobe.ne.jp>
Tue, 2 Jul 2013 02:04:02 +0000 (11:04 +0900)
committerJustin Pettit <jpettit@nicira.com>
Tue, 2 Jul 2013 04:10:34 +0000 (21:10 -0700)
fix a typo in the following commit.

> commit 10a89ef04df5669c5cdd02f786150a7ab8454e01
> Author: Ben Pfaff <blp@nicira.com>
> 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 <blp@nicira.com>

Signed-off-by: YAMAMOTO Takashi <yamt@mwd.biglobe.ne.jp>
Signed-off-by: Justin Pettit <jpettit@nicira.com>
lib/netdev-bsd.c

index f2cf852..401d03a 100644 (file)
@@ -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;
     }