summaryrefslogtreecommitdiffstats
path: root/toolbox/restorecon.c
diff options
context:
space:
mode:
authorStephen Smalley <sds@tycho.nsa.gov>2014-02-07 09:14:13 -0500
committerStephen Smalley <sds@tycho.nsa.gov>2014-02-07 09:38:32 -0500
commit27a93650c0df02e4cd3c48bbec8acee8b817a012 (patch)
tree5e44f37904161863c288b4c4734d7dabd3b3b94c /toolbox/restorecon.c
parent71de56a08cac3353334c2253748fdf8c37ec4aa1 (diff)
downloadsystem_core-27a93650c0df02e4cd3c48bbec8acee8b817a012.zip
system_core-27a93650c0df02e4cd3c48bbec8acee8b817a012.tar.gz
system_core-27a93650c0df02e4cd3c48bbec8acee8b817a012.tar.bz2
Convert all selinux_android_restorecon and _setfilecon calls to new API.
libselinux selinux_android_restorecon API is changing to the more general interface with flags and dropping the older variants. Also get rid of the old, no longer used selinux_android_setfilecon API and rename selinux_android_setfilecon2 to it as it is the only API in use. Change-Id: I1e71ec398ccdc24cac4ec76f1b858d0f680f4925 Signed-off-by: Stephen Smalley <sds@tycho.nsa.gov>
Diffstat (limited to 'toolbox/restorecon.c')
-rw-r--r--toolbox/restorecon.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/toolbox/restorecon.c b/toolbox/restorecon.c
index 137e9fa..11532da 100644
--- a/toolbox/restorecon.c
+++ b/toolbox/restorecon.c
@@ -49,7 +49,7 @@ int restorecon_main(int argc, char **argv)
usage();
for (i = 0; i < argc; i++) {
- rc = selinux_android_restorecon_flags(argv[i], flags);
+ rc = selinux_android_restorecon(argv[i], flags);
if (rc < 0)
fprintf(stderr, "Could not restorecon %s: %s\n", argv[i],
strerror(errno));