Skip to content

Commit

Permalink
libnl-3.2.27 release
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Haller <thaller@redhat.com>
  • Loading branch information
thom311 committed Oct 16, 2015
1 parent 6e69d9d commit 7b9671c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ m4_define([libnl_lt_revision], [0])
m4_define([libnl_lt_age], [22])

m4_define([libnl_version],
[libnl_major_version.libnl_minor_version.libnl_micro_version-rc1])
[libnl_major_version.libnl_minor_version.libnl_micro_version])

AC_INIT(libnl, [libnl_version], [], [], [http://www.infradead.org/~tgr/libnl/])
AC_CONFIG_HEADERS([lib/defs.h])
Expand Down
2 changes: 1 addition & 1 deletion doc/configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# Copyright (c) 2003-2013 Thomas Graf <tgraf@suug.ch>
#

AC_INIT(libnl-doc, [3.2.27-rc1], [http://www.infradead.org/~tgr/libnl/])
AC_INIT(libnl-doc, [3.2.27], [http://www.infradead.org/~tgr/libnl/])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_AUX_DIR([build-aux])
AM_INIT_AUTOMAKE([foreign])
Expand Down
6 changes: 6 additions & 0 deletions include/netlink/utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,12 @@ enum {
NL_CAPABILITY_RTNL_NEIGH_GET_FILTER_AF_UNSPEC_FIX = 10,
#define NL_CAPABILITY_RTNL_NEIGH_GET_FILTER_AF_UNSPEC_FIX NL_CAPABILITY_RTNL_NEIGH_GET_FILTER_AF_UNSPEC_FIX

/**
* The library version is libnl3 3.2.27 or newer. This capability should never be backported.
*/
NL_CAPABILITY_VERSION_3_2_27 = 11,
#define NL_CAPABILITY_VERSION_3_2_27 NL_CAPABILITY_VERSION_3_2_27

__NL_CAPABILITY_MAX,
NL_CAPABILITY_MAX = (__NL_CAPABILITY_MAX - 1),
#define NL_CAPABILITY_MAX NL_CAPABILITY_MAX
Expand Down
2 changes: 1 addition & 1 deletion lib/utils.c
Original file line number Diff line number Diff line change
Expand Up @@ -1154,7 +1154,7 @@ int nl_has_capability (int capability)
_NL_SET(1,
NL_CAPABILITY_LINK_BUILD_CHANGE_REQUEST_SET_CHANGE,
NL_CAPABILITY_RTNL_NEIGH_GET_FILTER_AF_UNSPEC_FIX,
0,
NL_CAPABILITY_VERSION_3_2_27,
0,
0,
0,
Expand Down

0 comments on commit 7b9671c

Please sign in to comment.