[dovecot-cvs] dovecot/src/lib-index mail-index-lock.c,1.46,1.47

cras at dovecot.org cras at dovecot.org
Fri Jan 6 22:13:56 EET 2006


Update of /var/lib/cvs/dovecot/src/lib-index
In directory talvi:/tmp/cvs-serv12376

Modified Files:
	mail-index-lock.c 
Log Message:
Added "(see lock_method setting in config file)" for flock() not supported
error too.



Index: mail-index-lock.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/lib-index/mail-index-lock.c,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -d -r1.46 -r1.47
--- mail-index-lock.c	2 Jan 2006 12:52:00 -0000	1.46
+++ mail-index-lock.c	6 Jan 2006 20:13:54 -0000	1.47
@@ -81,7 +81,8 @@
 	}
 	case MAIL_INDEX_LOCK_FLOCK: {
 #ifndef HAVE_FLOCK
-		i_fatal("flock() locks not supported");
+		i_fatal("flock() locks not supported "
+			"(see lock_method setting in config file)");
 #else
 		int operation = timeout_secs != 0 ? 0 : LOCK_NB;
 



More information about the dovecot-cvs mailing list