neigh: fix type for NUD_NOARP flag in trans_tbl

Translate NUD_NOARP to "noarp", instead of "norarp".

https://github.com/thom311/libnl/pull/79

Fixes: 44d362409d

Signed-off-by: Thomas Haller <thaller@redhat.com>
This commit is contained in:
Tobias Jungel 2015-06-16 13:43:07 +02:00 committed by Thomas Haller
parent 12e87e444d
commit 6a9335f101

View file

@ -746,7 +746,7 @@ static const struct trans_tbl neigh_states[] = {
__ADD(NUD_DELAY, delay),
__ADD(NUD_PROBE, probe),
__ADD(NUD_FAILED, failed),
__ADD(NUD_NOARP, norarp),
__ADD(NUD_NOARP, noarp),
__ADD(NUD_PERMANENT, permanent),
};