]> git.pld-linux.org Git - packages/ppp.git/blame - ppp-reap.patch
- not so nice hacks, but now works with pppd 2.4.2
[packages/ppp.git] / ppp-reap.patch
CommitLineData
2146b6f5 1--- ppp-2.4.0/pppd/main.c.reap Thu Jul 6 07:17:02 2000
2+++ ppp-2.4.0/pppd/main.c Thu Nov 9 17:41:30 2000
3@@ -1572,7 +1572,8 @@
4 (chp? chp->prog: "??"), pid, WTERMSIG(status));
5 } else if (debug)
6 dbglog("Script %s finished (pid %d), status = 0x%x",
7- (chp? chp->prog: "??"), pid, status);
8+ (chp? chp->prog: "??"), pid,
9+ WIFEXITED(status) ? WEXITSTATUS(status) : status);
10 if (chp && chp->done)
11 (*chp->done)(chp->arg);
12 if (chp)
This page took 0.042724 seconds and 4 git commands to generate.