[dovecot-cvs] dovecot/src/lib-index mail-index-view.c,1.22,1.23

cras at dovecot.org cras at dovecot.org
Sun Oct 10 16:55:15 EEST 2004


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

Modified Files:
	mail-index-view.c 
Log Message:
Removed Cyrus SASL code completely. It hasn't worked for ages (if ever?) and
there's not much point in having it anyway.



Index: mail-index-view.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/lib-index/mail-index-view.c,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -d -r1.22 -r1.23
--- mail-index-view.c	8 Oct 2004 17:51:48 -0000	1.22
+++ mail-index-view.c	10 Oct 2004 13:55:12 -0000	1.23
@@ -167,13 +167,13 @@
 
 void mail_index_view_unref_maps(struct mail_index_view *view)
 {
-	struct mail_index_map **maps;
+	struct mail_index_map *const *maps;
 	size_t i, size;
 
 	if (view->map_refs == NULL)
 		return;
 
-	maps = buffer_get_modifyable_data(view->map_refs, &size);
+	maps = buffer_get_data(view->map_refs, &size);
 	size /= sizeof(*maps);
 
 	for (i = 0; i < size; i++)



More information about the dovecot-cvs mailing list