dovecot: Compiler warning fix (wrong enums used, just happened t...

dovecot at dovecot.org dovecot at dovecot.org
Wed Feb 13 20:08:42 EET 2008


details:   http://hg.dovecot.org/dovecot/rev/be58c216dbf0
changeset: 7236:be58c216dbf0
user:      Timo Sirainen <tss at iki.fi>
date:      Wed Feb 13 20:07:29 2008 +0200
description:
Compiler warning fix (wrong enums used, just happened to work)

diffstat:

1 file changed, 1 insertion(+), 1 deletion(-)
src/plugins/fts-squat/fts-backend-squat.c |    2 +-

diffs (12 lines):

diff -r 2194777bcd8e -r be58c216dbf0 src/plugins/fts-squat/fts-backend-squat.c
--- a/src/plugins/fts-squat/fts-backend-squat.c	Wed Feb 13 20:04:40 2008 +0200
+++ b/src/plugins/fts-squat/fts-backend-squat.c	Wed Feb 13 20:07:29 2008 +0200
@@ -192,7 +192,7 @@ fts_backend_squat_lookup(struct fts_back
 		squat_type |= SQUAT_INDEX_TYPE_BODY;
 	i_assert(squat_type != 0);
 
-	return squat_trie_lookup(backend->trie, key, flags,
+	return squat_trie_lookup(backend->trie, key, squat_type,
 				 definite_uids, maybe_uids);
 }
 


More information about the dovecot-cvs mailing list