1
0
Fork 0
alistair23-linux/scripts/selinux
Al Viro a40612ef0e genheaders: %-<width>s had been there since v6; %-*s - since v7
Please, use at least K&R C; printf had been able to left-adjust
a field for as long as stdio existed and use of '*' for variable
width had been there since v7.  Yes, the first edition of K&R
didn't cover the latter feature (it slightly predates v7), but
you are using a much later feature of the language than that -
in K&R C
static char *stoupperx(const char *s)
{
...
}
would've been spelled as
static char *stoupperx(s)
char *s;
{
...
}

While we are at it, the use of strstr() is bogus - it finds the
_first_ instance of substring, so it's a lousy fit for checking
if a string ends with given suffix...

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
2018-12-10 03:40:11 -05:00
..
genheaders genheaders: %-<width>s had been there since v6; %-*s - since v7 2018-12-10 03:40:11 -05:00
mdp staging: lustre: delete the filesystem from the tree. 2018-06-05 19:22:35 +02:00
Makefile selinux: remove unnecessary assignment to subdir- 2017-11-16 09:13:43 +09:00
README doc: ReSTify SELinux.txt 2017-05-18 10:31:30 -06:00
install_policy.sh License cleanup: add SPDX GPL-2.0 license identifier to files with no license 2017-11-02 11:10:55 +01:00

README

Please see Documentation/admin-guide/LSM/SELinux.rst for information on
installing a dummy SELinux policy.