Browse Source

fix broken Tunnel potentially causing SIGPIPE

we need to ignore the signal, so the regular error handling can kick in.
master
Oswald Buddenhagen 2 years ago
parent
commit
b841374827
  1. 2
      src/main.c

2
src/main.c

@ -541,6 +541,8 @@ main( int argc, char **argv )
if (load_config( config ))
return 1;
signal( SIGPIPE, SIG_IGN );
if (mvars->list_stores)
list_stores( mvars, argv + oind );
else

Loading…
Cancel
Save