Ignore:
Timestamp:
Feb 25, 2011, 9:26:54 PM (13 years ago)
Author:
Bruno Cornec
Message:
  • Update mindi-busybox to 1.18.3 to avoid problems with the tar command which is now failing on recent versions with busybox 1.7.3
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.9/mindi-busybox/shell/ash_test/printenv.c

    r1765 r2725  
    4646      for (envp = environ; *envp; envp++)
    4747    puts (*envp);
    48       exit (0);
     48      exit(EXIT_SUCCESS);
    4949    }
    5050
     
    6060        {
    6161          puts (eval + 1);
    62           exit (0);
     62          exit(EXIT_SUCCESS);
    6363        }
    6464    }
    6565    }
    66   exit (1);
     66  exit(EXIT_FAILURE);
    6767}
Note: See TracChangeset for help on using the changeset viewer.