Christian Göttsche <cgzones@xxxxxxxxxxxxxx> writes: > The family of setfilecon(3) functions take the context as a read-only > `const char *` parameter. > > Signed-off-by: Christian Göttsche <cgzones@xxxxxxxxxxxxxx> Acked-by: Petr Lautrbach <plautrba@xxxxxxxxxx> Thanks. > --- > libselinux/man/man3/setfilecon.3 | 12 ++++++------ > 1 file changed, 6 insertions(+), 6 deletions(-) > > diff --git a/libselinux/man/man3/setfilecon.3 b/libselinux/man/man3/setfilecon.3 > index 0e9a383f..6bd3e415 100644 > --- a/libselinux/man/man3/setfilecon.3 > +++ b/libselinux/man/man3/setfilecon.3 > @@ -5,17 +5,17 @@ setfilecon, fsetfilecon, lsetfilecon \- set SELinux security context of a file > .SH "SYNOPSIS" > .B #include <selinux/selinux.h> > .sp > -.BI "int setfilecon(const char *" path ", char *" con ); > +.BI "int setfilecon(const char *" path ", const char *" con ); > .sp > -.BI "int setfilecon_raw(const char *" path ", char *" con ); > +.BI "int setfilecon_raw(const char *" path ", const char *" con ); > .sp > -.BI "int lsetfilecon(const char *" path ", char *" con ); > +.BI "int lsetfilecon(const char *" path ", const char *" con ); > .sp > -.BI "int lsetfilecon_raw(const char *" path ", char *" con ); > +.BI "int lsetfilecon_raw(const char *" path ", const char *" con ); > .sp > -.BI "int fsetfilecon(int "fd ", char *" con ); > +.BI "int fsetfilecon(int "fd ", const char *" con ); > .sp > -.BI "int fsetfilecon_raw(int "fd ", char *" con ); > +.BI "int fsetfilecon_raw(int "fd ", const char *" con ); > . > .SH "DESCRIPTION" > .BR setfilecon () > -- > 2.36.0