X-Git-Url: https://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=src%2Fapply-default-acl.c;h=6900a636e3ddc94b5045df620c8bf3ab772e73a6;hb=b088861e27935185fdd94425035000c4a8704b71;hp=0f7e9ae91deb8c477c0fbae6b8161fc8d6fa2850;hpb=40f86500e755883aaa824dba16743bc89d693a42;p=apply-default-acl.git diff --git a/src/apply-default-acl.c b/src/apply-default-acl.c index 0f7e9ae..6900a63 100644 --- a/src/apply-default-acl.c +++ b/src/apply-default-acl.c @@ -794,7 +794,7 @@ int apply_default_acl(const char* path, bool no_exec_mask) { * The program name to use in the output. * */ -void usage(char* program_name) { +void usage(const char* program_name) { printf("Apply any applicable default ACLs to the given files or " "directories.\n\n"); printf("Usage: %s [flags] [ [ ...]]\n\n", @@ -975,7 +975,7 @@ int main(int argc, char* argv[]) { reapp_result = apply_default_acl_recursive(target, no_exec_mask); } else { - /* It's either normal file, or we're not operating recursively. */ + /* It's either a normal file, or we're not operating recursively. */ reapp_result = apply_default_acl(target, no_exec_mask); }