|
Last change
on this file since 3666 was 1765, checked in by Bruno Cornec, 18 years ago |
|
Update to busybox 1.7.2
|
-
Property svn:eol-style
set to
native
|
|
File size:
272 bytes
|
| Line | |
|---|
| 1 | /*
|
|---|
| 2 | * selinuxenabled
|
|---|
| 3 | *
|
|---|
| 4 | * Based on libselinux 1.33.1
|
|---|
| 5 | * Port to BusyBox Hiroshi Shinji <shiroshi@my.email.ne.jp>
|
|---|
| 6 | *
|
|---|
| 7 | */
|
|---|
| 8 | #include "libbb.h"
|
|---|
| 9 |
|
|---|
| 10 | int selinuxenabled_main(int argc, char **argv);
|
|---|
| 11 | int selinuxenabled_main(int argc, char **argv)
|
|---|
| 12 | {
|
|---|
| 13 | return !is_selinux_enabled();
|
|---|
| 14 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.