summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2014-06-17 12:48:24 (GMT)
committerThomas Haller <thaller@redhat.com>2014-06-17 15:24:42 (GMT)
commitfeda705426c4a1d24aff9d6a0b7a264df226ae10 (patch)
tree3d3ad1634a4c95d18246a397eae95ea300898a7f
parentf8144b11aae59ceeeb3efccc67f68080a3f5e229 (diff)
downloadlibnl-feda705426c4a1d24aff9d6a0b7a264df226ae10.zip
libnl-feda705426c4a1d24aff9d6a0b7a264df226ae10.tar.gz
libnl-feda705426c4a1d24aff9d6a0b7a264df226ae10.tar.bz2
cli: Fix typo in error message
s/neighbout/neighbour/ Signed-off-by: Tobias Klauser <tklauser@distanz.ch> Signed-off-by: Thomas Haller <thaller@redhat.com>
-rw-r--r--src/lib/neigh.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/neigh.c b/src/lib/neigh.c
index a814bd8..4518e46 100644
--- a/src/lib/neigh.c
+++ b/src/lib/neigh.c
@@ -25,7 +25,7 @@ struct rtnl_neigh *nl_cli_neigh_alloc(void)
neigh = rtnl_neigh_alloc();
if (!neigh)
- nl_cli_fatal(ENOMEM, "Unable to allocate neighbout object");
+ nl_cli_fatal(ENOMEM, "Unable to allocate neighbour object");
return neigh;
}