Magellan Linux

Diff of /trunk/mkinitrd-magellan/busybox/libbb/parse_mode.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 40  int FAST_FUNC bb_parse_mode(const char * Line 40  int FAST_FUNC bb_parse_mode(const char *
40   mode_t new_mode;   mode_t new_mode;
41   char op;   char op;
42    
43   if (((unsigned int)(*s - '0')) < 8) {   if ((unsigned char)(*s - '0') < 8) {
44   unsigned long tmp;   unsigned long tmp;
45   char *e;   char *e;
46    

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