diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2014-06-17 12:48:24 (GMT) |
---|---|---|
committer | Thomas Haller <thaller@redhat.com> | 2014-06-17 15:24:42 (GMT) |
commit | feda705426c4a1d24aff9d6a0b7a264df226ae10 (patch) | |
tree | 3d3ad1634a4c95d18246a397eae95ea300898a7f | |
parent | f8144b11aae59ceeeb3efccc67f68080a3f5e229 (diff) | |
download | libnl-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.c | 2 |
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; } |