Magellan Linux

Diff of /trunk/mkinitrd-magellan/busybox/coreutils/chmod.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 983 by niro, Fri Apr 24 18:33:46 2009 UTC revision 984 by niro, Sun May 30 11:32:42 2010 UTC
# Line 20  Line 20 
20    
21    
22  #define OPT_RECURSE (option_mask32 & 1)  #define OPT_RECURSE (option_mask32 & 1)
23  #define OPT_VERBOSE (USE_DESKTOP(option_mask32 & 2) SKIP_DESKTOP(0))  #define OPT_VERBOSE (IF_DESKTOP(option_mask32 & 2) IF_NOT_DESKTOP(0))
24  #define OPT_CHANGED (USE_DESKTOP(option_mask32 & 4) SKIP_DESKTOP(0))  #define OPT_CHANGED (IF_DESKTOP(option_mask32 & 4) IF_NOT_DESKTOP(0))
25  #define OPT_QUIET   (USE_DESKTOP(option_mask32 & 8) SKIP_DESKTOP(0))  #define OPT_QUIET   (IF_DESKTOP(option_mask32 & 8) IF_NOT_DESKTOP(0))
26  #define OPT_STR     "R" USE_DESKTOP("vcf")  #define OPT_STR     "R" IF_DESKTOP("vcf")
27    
28  /* coreutils:  /* coreutils:
29   * chmod never changes the permissions of symbolic links; the chmod   * chmod never changes the permissions of symbolic links; the chmod

Legend:
Removed from v.983  
changed lines
  Added in v.984