Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 51889 | Differences between
and this patch

Collapse All | Expand All

(-)ppp-2.4.2.orig/pppd/main.c (-1 / +1 lines)
Lines 1340-1351 Link Here
1340
{
1340
{
1341
    struct sigaction act, oldact;
1341
    struct sigaction act, oldact;
1342
1342
1343
    act.sa_handler = SIG_IGN;
1343
    act.sa_handler = SIG_IGN;
1344
    act.sa_flags = 0;
1344
    act.sa_flags = 0;
1345
    sigaction(sig, &act, &oldact);
1346
    kill(0, sig);
1345
    kill(0, sig);
1346
    sigaction(sig, &act, &oldact);
1347
    sigaction(sig, &oldact, NULL);
1347
    sigaction(sig, &oldact, NULL);
1348
}
1348
}
1349
1349
1350
1350
1351
/*
1351
/*

Return to bug 51889