]> code.citadel.org Git - citadel.git/blobdiff - citadel/control.c
Fixed a logic bug that caused the full text index
[citadel.git] / citadel / control.c
index 2260fa5617e716aec948d95edee1c1b509566206..5a7f2e97a9e7920b40561f3f0e5576d8ba312ad9 100644 (file)
@@ -431,7 +431,7 @@ void cmd_conf(char *argbuf)
                /* If full text indexing has been disabled, invalidate the
                 * index so it doesn't try to use it later.
                 */
-               if (!config.c_enable_fulltext == 0) {
+               if (config.c_enable_fulltext == 0) {
                        CitControl.fulltext_wordbreaker = 0;
                        put_control();
                }