From: Ben Pfaff Date: Fri, 2 Mar 2012 22:18:21 +0000 (-0800) Subject: netdev: Fix typo in error message. X-Git-Url: http://git.onelab.eu/?p=sliver-openvswitch.git;a=commitdiff_plain;h=089409d0c084fbb8c4504cb1f5613d48f37d3ef1 netdev: Fix typo in error message. Found by inspection. Signed-off-by: Ben Pfaff --- diff --git a/lib/netdev.c b/lib/netdev.c index 9f15b72a6..571f626e1 100644 --- a/lib/netdev.c +++ b/lib/netdev.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008, 2009, 2010, 2011 Nicira Networks. + * Copyright (c) 2008, 2009, 2010, 2011, 2012 Nicira Networks. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -537,7 +537,7 @@ netdev_set_mtu(const struct netdev *netdev, int mtu) error = class->set_mtu ? class->set_mtu(netdev, mtu) : EOPNOTSUPP; if (error && error != EOPNOTSUPP) { - VLOG_WARN_RL(&rl, "failed to retrieve MTU for network device %s: %s", + VLOG_WARN_RL(&rl, "failed to set MTU for network device %s: %s", netdev_get_name(netdev), strerror(error)); }