[dovecot-cvs] dovecot/src/deliver deliver.c,1.19,1.20
cras at dovecot.org
cras at dovecot.org
Thu May 4 01:58:55 EEST 2006
Update of /var/lib/cvs/dovecot/src/deliver
In directory talvi:/tmp/cvs-serv26015/deliver
Modified Files:
deliver.c
Log Message:
Use lib_signals_ignore() for signals we really want ignored.
Index: deliver.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/deliver/deliver.c,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- deliver.c 2 Apr 2006 09:19:37 -0000 1.19
+++ deliver.c 3 May 2006 22:58:53 -0000 1.20
@@ -362,7 +362,7 @@
lib_signals_init();
lib_signals_set_handler(SIGINT, TRUE, sig_die, NULL);
lib_signals_set_handler(SIGTERM, TRUE, sig_die, NULL);
- lib_signals_set_handler(SIGPIPE, FALSE, NULL, NULL);
+ lib_signals_ignore(SIGPIPE);
lib_signals_set_handler(SIGALRM, FALSE, NULL, NULL);
destination = NULL;
More information about the dovecot-cvs
mailing list