|
Lines 471-476
monitor_child_postauth(struct monitor *pmonitor)
Link Here
|
| 471 |
signal(SIGHUP, &monitor_child_handler); |
471 |
signal(SIGHUP, &monitor_child_handler); |
| 472 |
signal(SIGTERM, &monitor_child_handler); |
472 |
signal(SIGTERM, &monitor_child_handler); |
| 473 |
signal(SIGINT, &monitor_child_handler); |
473 |
signal(SIGINT, &monitor_child_handler); |
|
|
474 |
#ifdef SIGXFSZ |
| 475 |
signal(SIGXFSZ, SIG_IGN); |
| 476 |
#endif |
| 474 |
|
477 |
|
| 475 |
if (compat20) { |
478 |
if (compat20) { |
| 476 |
mon_dispatch = mon_dispatch_postauth20; |
479 |
mon_dispatch = mon_dispatch_postauth20; |
| 477 |
- |
|
|