Ondrej Vasik 0beb80
diff -urNp coreutils-6.12-orig/man/chcon.1 coreutils-6.12/man/chcon.1
Ondrej Vasik 0beb80
--- coreutils-6.12-orig/man/chcon.1	2008-10-08 14:45:59.000000000 +0200
Ondrej Vasik 0beb80
+++ coreutils-6.12/man/chcon.1	2008-10-08 16:35:55.000000000 +0200
Ondrej Vasik 0beb80
@@ -17,9 +17,6 @@ chcon \- change file SELinux security co
Ondrej Vasik 0beb80
 Change the SELinux security context of each FILE to CONTEXT.
Ondrej Vasik 0beb80
 With \fB\-\-reference\fR, change the security context of each FILE to that of RFILE.
Ondrej Vasik 0beb80
 .TP
Ondrej Vasik 0beb80
-\fB\-c\fR, \fB\-\-changes\fR
Ondrej Vasik 0beb80
-like verbose but report only when a change is made
Ondrej Vasik 0beb80
-.TP
Ondrej Vasik 0beb80
 \fB\-h\fR, \fB\-\-no\-dereference\fR
Ondrej Vasik 0beb80
 affect symbolic links instead of any referenced file
Ondrej Vasik 0beb80
 .TP
Ondrej Vasik 0beb80
diff -urNp coreutils-6.12-orig/src/chcon.c coreutils-6.12/src/chcon.c
Ondrej Vasik 0beb80
--- coreutils-6.12-orig/src/chcon.c	2008-10-08 14:45:59.000000000 +0200
Ondrej Vasik 0beb80
+++ coreutils-6.12/src/chcon.c	2008-10-08 16:28:36.000000000 +0200
Ondrej Vasik 0beb80
@@ -35,25 +35,6 @@
Ondrej Vasik 0beb80
   proper_name ("Russell Coker"), \
Ondrej Vasik 0beb80
   proper_name ("Jim Meyering")
Ondrej Vasik 0beb80
 
Ondrej Vasik 0beb80
-enum Change_status
Ondrej Vasik 0beb80
-{
Ondrej Vasik 0beb80
-  CH_NOT_APPLIED,
Ondrej Vasik 0beb80
-  CH_SUCCEEDED,
Ondrej Vasik 0beb80
-  CH_FAILED,
Ondrej Vasik 0beb80
-  CH_NO_CHANGE_REQUESTED
Ondrej Vasik 0beb80
-};
Ondrej Vasik 0beb80
-
Ondrej Vasik 0beb80
-enum Verbosity
Ondrej Vasik 0beb80
-{
Ondrej Vasik 0beb80
-  /* Print a message for each file that is processed.  */
Ondrej Vasik 0beb80
-  V_high,
Ondrej Vasik 0beb80
-
Ondrej Vasik 0beb80
-  /* Print a message for each file whose attributes we change.  */
Ondrej Vasik 0beb80
-  V_changes_only,
Ondrej Vasik 0beb80
-
Ondrej Vasik 0beb80
-  /* Do not be verbose.  This is the default. */
Ondrej Vasik 0beb80
-  V_off
Ondrej Vasik 0beb80
-};
Ondrej Vasik 0beb80
 
Ondrej Vasik 0beb80
 /* The name the program was run with. */
Ondrej Vasik 0beb80
 char *program_name;
Ondrej Vasik 0beb80
@@ -374,7 +355,6 @@ Usage: %s [OPTION]... CONTEXT FILE...\n\
Ondrej Vasik 0beb80
 Change the security context of each FILE to CONTEXT.\n\
Ondrej Vasik 0beb80
 With --reference, change the security context of each FILE to that of RFILE.\n\
Ondrej Vasik 0beb80
 \n\
Ondrej Vasik 0beb80
-  -c, --changes          like verbose but report only when a change is made\n\
Ondrej Vasik 0beb80
   -h, --no-dereference   affect symbolic links instead of any referenced file\n\
Ondrej Vasik 0beb80
 "), stdout);
Ondrej Vasik 0beb80
       fputs (_("\
Ondrej Vasik 0beb80
@@ -435,7 +415,7 @@ main (int argc, char **argv)
Ondrej Vasik 0beb80
 
Ondrej Vasik 0beb80
   atexit (close_stdout);
Ondrej Vasik 0beb80
 
Ondrej Vasik 0beb80
-  while ((optc = getopt_long (argc, argv, "HLPRchvu:r:t:l:", long_options, NULL))
Ondrej Vasik 0beb80
+  while ((optc = getopt_long (argc, argv, "HLPRhvu:r:t:l:", long_options, NULL))
Ondrej Vasik 0beb80
 	 != -1)
Ondrej Vasik 0beb80
     {
Ondrej Vasik 0beb80
       switch (optc)