[dovecot-cvs] dovecot/src/util rawlog.c,1.5,1.6

cras at dovecot.org cras at dovecot.org
Fri Jan 13 22:26:55 EET 2006


Update of /var/lib/cvs/dovecot/src/util
In directory talvi:/tmp/cvs-serv27808/src/util

Modified Files:
	rawlog.c 
Log Message:
Added "bool" type and changed all ints that were used as booleans to bool.



Index: rawlog.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/util/rawlog.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- rawlog.c	7 Jan 2005 13:22:01 -0000	1.5
+++ rawlog.c	13 Jan 2006 20:26:53 -0000	1.6
@@ -230,7 +230,7 @@
 
 static struct rawlog_proxy *
 rawlog_proxy_create(int client_in_fd, int client_out_fd, int server_fd,
-		    const char *path, int write_timestamps)
+		    const char *path, bool write_timestamps)
 {
 	struct rawlog_proxy *proxy;
 
@@ -261,7 +261,7 @@
 	return proxy;
 }
 
-static void rawlog_open(int write_timestamps)
+static void rawlog_open(bool write_timestamps)
 {
 	const char *home, *path;
 	struct stat st;



More information about the dovecot-cvs mailing list