aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Pfaff <blp@nicira.com>2012-03-02 14:18:21 -0800
committerBen Pfaff <blp@nicira.com>2012-03-02 14:55:21 -0800
commitb84642dc9ac1e08d802f37d0de31d920db2bdffa (patch)
tree6cee334cc207501039e81dc5736c33fcdf6d24a4
parent0c12a992997a989be85e500c5c2272de203ef623 (diff)
netdev: Fix typo in error message.
Found by inspection. Signed-off-by: Ben Pfaff <blp@nicira.com>
-rw-r--r--lib/netdev.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/netdev.c b/lib/netdev.c
index e77fcdfa..e55ab79c 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));
}