Browse Source

main.c, batchmode SETJMP wrapper

rlar 15 years ago
parent
commit
f86d17ea5a
  1. 6
      src/main.c

6
src/main.c

@ -1256,16 +1256,12 @@ bot:
evl:
if (ft_batchmode) {
bool st = FALSE;
(void) SETJMP(jbuf, 1);
/* If we get back here in batch mode then something is wrong,
* so exit. */
if (st == TRUE)
if (SETJMP(jbuf, 1))
sp_shutdown(EXIT_BAD);
st = TRUE;
if (ft_servermode) {
if (ft_curckt == NULL) {

Loading…
Cancel
Save