Not seen in a while. I suspect its hiding behind a fixed F->closing()
test, so the whole if test may be obsolete.
Applying in order to close the bug with surety and sync the conditions on
shutdown and restart-closing.
if (F->closing())
return;
- if (shutting_down && (!F->flags.open || F->type == FD_FILE))
+ /* XXX: is this obsolete behind F->closing() ? */
+ if ( (shutting_down || reconfiguring) && (!F->flags.open || F->type == FD_FILE))
return;
/* The following fails because ipc.c is doing calls to pipe() to create sockets! */