dovecot-2.2: lib-fts: Renamed variable.

dovecot at dovecot.org dovecot at dovecot.org
Tue Jun 2 18:48:09 UTC 2015


details:   http://hg.dovecot.org/dovecot-2.2/rev/b8665bd3574b
changeset: 18798:b8665bd3574b
user:      Timo Sirainen <tss at iki.fi>
date:      Tue Jun 02 21:43:27 2015 +0300
description:
lib-fts: Renamed variable.
This is a lowercase-filter, not a normalizer.

diffstat:

 src/lib-fts/fts-filter-lowercase.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (21 lines):

diff -r 635e6747c41d -r b8665bd3574b src/lib-fts/fts-filter-lowercase.c
--- a/src/lib-fts/fts-filter-lowercase.c	Tue Jun 02 21:41:46 2015 +0300
+++ b/src/lib-fts/fts-filter-lowercase.c	Tue Jun 02 21:43:27 2015 +0300
@@ -40,7 +40,7 @@
 	return 1;
 }
 
-static const struct fts_filter_vfuncs normalizer_filter_vfuncs = {
+static const struct fts_filter_vfuncs lowercase_filter_vfuncs = {
 	fts_filter_lowercase_create,
 	fts_filter_lowercase_filter,
 	fts_filter_lowercase_destroy
@@ -48,7 +48,7 @@
 
 static const struct fts_filter fts_filter_lowercase_real = {
 	.class_name = "lowercase",
-	.v = &normalizer_filter_vfuncs
+	.v = &lowercase_filter_vfuncs
 };
 
 const struct fts_filter *fts_filter_lowercase = &fts_filter_lowercase_real;


More information about the dovecot-cvs mailing list