Changeset 1772 in MondoRescue for branches/2.2.5/mindi-busybox/shell/ash.c


Ignore:
Timestamp:
Nov 6, 2007, 9:23:18 PM (16 years ago)
Author:
Bruno Cornec
Message:

Update mindi-busybox to 1.7.3

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.5/mindi-busybox/shell/ash.c

    r1765 r1772  
    43804380/* Lives far away from here, needed for forkchild */
    43814381static void closescript(void);
     4382
    43824383/* Called after fork(), in child */
    43834384static void
     
    44244425        setsignal(SIGTERM);
    44254426    }
    4426 #if JOBS
    4427     /* For "jobs | cat" to work like in bash, we must retain list of jobs
    4428      * in child, but we do need to remove ourself */
    4429     if (jp)
    4430         freejob(jp);
    4431 #else
    44324427    for (jp = curjob; jp; jp = jp->prev_job)
    44334428        freejob(jp);
    4434 #endif
    44354429    jobless = 0;
    44364430}
Note: See TracChangeset for help on using the changeset viewer.