[dovecot-cvs] dovecot/src/lib ioloop-epoll.c, 1.19, 1.20 ioloop-kqueue.c, 1.14, 1.15

tss at dovecot.org tss at dovecot.org
Sun Dec 3 14:28:00 UTC 2006


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

Modified Files:
	ioloop-epoll.c ioloop-kqueue.c 
Log Message:
s/array_get_modifyable/array_get_modifiable/



Index: ioloop-epoll.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/lib/ioloop-epoll.c,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- ioloop-epoll.c	7 Nov 2006 13:57:30 -0000	1.19
+++ ioloop-epoll.c	3 Dec 2006 14:27:57 -0000	1.20
@@ -47,7 +47,7 @@
 	struct io_list **list;
 	unsigned int i, count;
 
-	list = array_get_modifyable(&ctx->fd_index, &count);
+	list = array_get_modifiable(&ctx->fd_index, &count);
 	for (i = 0; i < count; i++)
 		p_free(ioloop->pool, list[i]);
 

Index: ioloop-kqueue.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/lib/ioloop-kqueue.c,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- ioloop-kqueue.c	3 Nov 2006 14:19:32 -0000	1.14
+++ ioloop-kqueue.c	3 Dec 2006 14:27:57 -0000	1.15
@@ -126,7 +126,7 @@
 	ts.tv_nsec = tv.tv_usec * 1000;
 
 	/* wait for events */
-	events = array_get_modifyable(&ctx->events, &events_count);
+	events = array_get_modifiable(&ctx->events, &events_count);
 	ret = kevent (ctx->kq, NULL, 0, events, events_count, &ts);
 	if (ret < 0 && errno != EINTR)
 		i_fatal("kevent(): %m");



More information about the dovecot-cvs mailing list