diff --git a/libselinux/src/init.c b/libselinux/src/init.c index a948920..547f1eb 100644 --- a/libselinux/src/init.c +++ b/libselinux/src/init.c @@ -79,7 +70,7 @@ static void init_selinuxmnt(void) tmp = strchr(p, ' '); if (!tmp) goto out; - if (!strncmp(tmp + 1, "selinuxfs ", 10)) { + if (!strncmp(tmp + 1, SELINUXFS, 10)) { *tmp = '\0'; break; } This isn't equivalent. I suppose you could do this: + if (!strncmp(tmp + 1, SELINUXFS" ", sizeof SELINUXFS)) { -- Stephen Smalley National Security Agency -- This message was distributed to subscribers of the selinux mailing list. If you no longer wish to subscribe, send mail to majordomo@xxxxxxxxxxxxx with the words "unsubscribe selinux" without quotes as the message.