Ignore:
Timestamp:
Jan 1, 2014, 12:47:38 AM (10 years ago)
Author:
Bruno Cornec
Message:
  • Update mindi-busybox to 1.21.1
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.2/mindi-busybox/libbb/xfuncs_printf.c

    r2725 r3232  
    356356{
    357357    if (chdir(path))
    358         bb_perror_msg_and_die("chdir(%s)", path);
     358        bb_perror_msg_and_die("can't change directory to '%s'", path);
    359359}
    360360
     
    362362{
    363363    if (chroot(path))
    364         bb_perror_msg_and_die("can't change root directory to %s", path);
     364        bb_perror_msg_and_die("can't change root directory to '%s'", path);
     365    xchdir("/");
    365366}
    366367
Note: See TracChangeset for help on using the changeset viewer.