Commit 6ba44162 6ba441621896a49c40cd5361ed11241ef577d781 by Sergey Poznyakoff

(imap4d_signal): Minor fix

1 parent c3cc0cec
...@@ -52,8 +52,8 @@ imap4d_signal (int signo) ...@@ -52,8 +52,8 @@ imap4d_signal (int signo)
52 imap4d_bye (ERR_TIMEOUT); 52 imap4d_bye (ERR_TIMEOUT);
53 53
54 case SIGPIPE: 54 case SIGPIPE:
55 exit (0); 55 imap4d_bye (ERR_NO_OFILE);
56 56
57 default: 57 default:
58 imap4d_bye (ERR_SIGNAL); 58 imap4d_bye (ERR_SIGNAL);
59 } 59 }
......