libnl: add ERANGE to errno translation

Signed-off-by: Patrick McHardy <kaber@trash.net>
This commit is contained in:
Patrick McHardy 2009-11-05 13:38:26 +01:00 committed by Thomas Graf
parent fed168212e
commit 8d2bb90726

View file

@ -100,6 +100,7 @@ int nl_syserr2nlerr(int error)
case EOPNOTSUPP: return NLE_OPNOTSUPP;
case EPERM: return NLE_PERM;
case EBUSY: return NLE_BUSY;
case ERANGE: return NLE_RANGE;
default: return NLE_FAILURE;
}
}