[dovecot-cvs] dovecot-lda/src deliver.c,1.31,1.32

cras at dovecot.org cras at dovecot.org
Fri Oct 28 13:57:25 EEST 2005


Update of /var/lib/cvs/dovecot-lda/src
In directory talvi:/tmp/cvs-serv22088/src

Modified Files:
	deliver.c 
Log Message:
Ignore SIGALRM signal. We don't want to crash when it happens.



Index: deliver.c
===================================================================
RCS file: /var/lib/cvs/dovecot-lda/src/deliver.c,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -d -r1.31 -r1.32
--- deliver.c	16 Oct 2005 14:48:19 -0000	1.31
+++ deliver.c	28 Oct 2005 10:57:22 -0000	1.32
@@ -478,6 +478,7 @@
         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_set_handler(SIGALRM, FALSE, NULL, NULL);
 
 	destination = NULL;
 	for (i = 1; i < argc; i++) {



More information about the dovecot-cvs mailing list