diff options
author | Thomas Graf <tgraf@suug.ch> | 2011-03-24 15:56:10 (GMT) |
---|---|---|
committer | Thomas Graf <tgraf@suug.ch> | 2011-03-24 15:56:10 (GMT) |
commit | 93b6c114a8fa21e5e907a5b2415c7ffb441b0a8f (patch) | |
tree | f380f6951c47d9c0098bf708e175d90a168519b0 /include | |
parent | 14fa557ba94a4243b5963ea137412c5e1204ecb5 (diff) | |
download | libnl-93b6c114a8fa21e5e907a5b2415c7ffb441b0a8f.zip libnl-93b6c114a8fa21e5e907a5b2415c7ffb441b0a8f.tar.gz libnl-93b6c114a8fa21e5e907a5b2415c7ffb441b0a8f.tar.bz2 |
Add NLE_NODEV error
Diffstat (limited to 'include')
-rw-r--r-- | include/netlink/errno.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/netlink/errno.h b/include/netlink/errno.h index dde12b7..93dc163 100644 --- a/include/netlink/errno.h +++ b/include/netlink/errno.h @@ -47,8 +47,9 @@ extern "C" { #define NLE_PERM 28 #define NLE_PKTLOC_FILE 29 #define NLE_PARSE_ERR 30 +#define NLE_NODEV 31 -#define NLE_MAX NLE_PARSE_ERR +#define NLE_MAX NLE_NODEV extern const char * nl_geterror(int); extern void nl_perror(int, const char *); |