changeset 18138:e23f1f333ada

fts: Correct returned value to match type signature.
author Teemu Huovila <teemu.huovila@dovecot.fi>
date Mon, 05 Jan 2015 15:48:55 +0200
parents 3009a1a6f6d5
children dbd1dbd968ac
files src/plugins/fts/fts-parser.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/plugins/fts/fts-parser.c	Mon Jan 05 22:20:10 2015 +0200
+++ b/src/plugins/fts/fts-parser.c	Mon Jan 05 15:48:55 2015 +0200
@@ -21,7 +21,7 @@
 	if (strcmp(content_type, "text/plain") == 0) {
 		/* we probably don't want/need to allow parsers to handle
 		   plaintext? */
-		return NULL;
+		return FALSE;
 	}
 
 	for (i = 0; i < N_ELEMENTS(parsers); i++) {