aboutsummaryrefslogtreecommitdiff
path: root/selinux
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-07-24 06:17:43 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-07-24 06:17:43 +0000
commit1da77728d75884b7dd1a02ca3ab89d5313d8e9fd (patch)
tree0dd83def87b5957733860a831b29fdbb4a4dcc0f /selinux
parent3e64e98570b2748973a66876a8b010c5d63e23be (diff)
downloadbusybox-1da77728d75884b7dd1a02ca3ab89d5313d8e9fd.tar.gz
setfiles: small tweaks to usage text and code
Diffstat (limited to 'selinux')
-rw-r--r--selinux/setfiles.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/selinux/setfiles.c b/selinux/setfiles.c
index cadec8367..d9fb50725 100644
--- a/selinux/setfiles.c
+++ b/selinux/setfiles.c
@@ -128,10 +128,10 @@ static void inc_err(void)
}
}
-static int add_exclude(const char *directory)
+static bool add_exclude(const char *const directory)
{
struct stat sb;
- size_t len = 0;
+ size_t len;
if (directory == NULL || directory[0] != '/') {
bb_error_msg("full path required for exclude: %s", directory);
@@ -161,7 +161,7 @@ static int add_exclude(const char *directory)
return 0;
}
-static int exclude(const char *file)
+static bool exclude(const char *file)
{
int i = 0;
for (i = 0; i < excludeCtr; i++) {
@@ -268,7 +268,7 @@ static int match(const char *name, struct stat *sb, char **con)
/* Compare two contexts to see if their differences are "significant",
* or whether the only difference is in the user. */
-static int only_changed_user(const char *a, const char *b)
+static bool only_changed_user(const char *a, const char *b)
{
if (FLAG_F_force)
return 0;
@@ -289,7 +289,7 @@ static int restore(const char *file)
int i, j, ret;
char *context = NULL;
char *newcon = NULL;
- int user_only_changed = 0;
+ bool user_only_changed = 0;
size_t len = strlen(my_file);
int retval = 0;
@@ -561,7 +561,7 @@ int setfiles_main(int argc, char **argv)
set_matchpathcon_flags(matchpathcon_flags);
- opt_complementary = "e::vv:v--p:p--v";
+ opt_complementary = "e::vv:v--p:p--v:v--q:q--v";
/* Option order must match OPT_x definitions! */
if (applet_name[0] == 'r') { /* restorecon */
flags = getopt32(argc, argv, "de:f:ilnpqrsvo:FWR",