Message ID | 20230816190934.729086-1-jwcart2@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 01da3a9ca369 |
Delegated to: | Petr Lautrbach |
Headers | show |
Series | libsepol: Fix the version number for the latest exported function | expand |
James Carter <jwcart2@gmail.com> writes: > cil_write_post_ast() should be in libsepol version 3.6, since version > 3.5 has already been released. > > Signed-off-by: James Carter <jwcart2@gmail.com> Acked-by: Petr Lautrbach <lautrbach@redhat.com> > --- > libsepol/src/libsepol.map.in | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/libsepol/src/libsepol.map.in b/libsepol/src/libsepol.map.in > index 6ad68f0b..e5e6608c 100644 > --- a/libsepol/src/libsepol.map.in > +++ b/libsepol/src/libsepol.map.in > @@ -290,7 +290,7 @@ LIBSEPOL_3.4 { > sepol_validate_transition_reason_buffer; > } LIBSEPOL_3.0; > > -LIBSEPOL_3.5 { > +LIBSEPOL_3.6 { > global: > cil_write_post_ast; > } LIBSEPOL_3.4; > -- > 2.41.0
On Thu, Aug 17, 2023 at 3:42 AM Petr Lautrbach <lautrbach@redhat.com> wrote: > > James Carter <jwcart2@gmail.com> writes: > > > cil_write_post_ast() should be in libsepol version 3.6, since version > > 3.5 has already been released. > > > > Signed-off-by: James Carter <jwcart2@gmail.com> > > Acked-by: Petr Lautrbach <lautrbach@redhat.com> > Merged. Thanks, Jim > > --- > > libsepol/src/libsepol.map.in | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git a/libsepol/src/libsepol.map.in b/libsepol/src/libsepol.map.in > > index 6ad68f0b..e5e6608c 100644 > > --- a/libsepol/src/libsepol.map.in > > +++ b/libsepol/src/libsepol.map.in > > @@ -290,7 +290,7 @@ LIBSEPOL_3.4 { > > sepol_validate_transition_reason_buffer; > > } LIBSEPOL_3.0; > > > > -LIBSEPOL_3.5 { > > +LIBSEPOL_3.6 { > > global: > > cil_write_post_ast; > > } LIBSEPOL_3.4; > > -- > > 2.41.0 >
diff --git a/libsepol/src/libsepol.map.in b/libsepol/src/libsepol.map.in index 6ad68f0b..e5e6608c 100644 --- a/libsepol/src/libsepol.map.in +++ b/libsepol/src/libsepol.map.in @@ -290,7 +290,7 @@ LIBSEPOL_3.4 { sepol_validate_transition_reason_buffer; } LIBSEPOL_3.0; -LIBSEPOL_3.5 { +LIBSEPOL_3.6 { global: cil_write_post_ast; } LIBSEPOL_3.4;
cil_write_post_ast() should be in libsepol version 3.6, since version 3.5 has already been released. Signed-off-by: James Carter <jwcart2@gmail.com> --- libsepol/src/libsepol.map.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)