diff options
author | Thomas Haller <thaller@redhat.com> | 2016-04-15 13:51:26 (GMT) |
---|---|---|
committer | Thomas Haller <thaller@redhat.com> | 2016-04-15 14:24:15 (GMT) |
commit | 962afc32df4d5ced16128652b30f48d19fef3cfa (patch) | |
tree | 270125f406d9abb6314638b638951dfb1a633898 | |
parent | 656bf6b16f9d015195bf9fb2fe58b0964f2dfc94 (diff) | |
download | libnl-962afc32df4d5ced16128652b30f48d19fef3cfa.zip libnl-962afc32df4d5ced16128652b30f48d19fef3cfa.tar.gz libnl-962afc32df4d5ced16128652b30f48d19fef3cfa.tar.bz2 |
sit: fix invalid declaration of rtnl_link_sit_get_proto() in sit.h
Fixes: d715b8a5f6ec8faf205ae77950a1c625440be22f
Signed-off-by: Thomas Haller <thaller@redhat.com>
-rw-r--r-- | include/netlink/route/link/sit.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/netlink/route/link/sit.h b/include/netlink/route/link/sit.h index 84dc44a..37408ca 100644 --- a/include/netlink/route/link/sit.h +++ b/include/netlink/route/link/sit.h @@ -44,7 +44,7 @@ extern "C" { extern uint16_t rtnl_link_sit_get_flags(struct rtnl_link *link); int rtnl_link_sit_set_proto(struct rtnl_link *link, uint8_t proto); - uint8_t rtnl_link_get_proto(struct rtnl_link *link); + uint8_t rtnl_link_sit_get_proto(struct rtnl_link *link); #ifdef _cplusplus } |