summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDom Lachowicz <domlachowicz@gmail.com>2003-08-31 00:34:07 +0000
committerDom Lachowicz <domlachowicz@gmail.com>2003-08-31 00:34:07 +0000
commit12fc0a846465047db6164c891931e1ae2d149b13 (patch)
tree0ce8bbad4d5f7ea59225817b3e67f12aecd1ba0c
parent1f9f132a7254fcca529a86f833c6b92dac7d686f (diff)
downloadenchant-12fc0a846465047db6164c891931e1ae2d149b13.tar.gz
fix case reversal
git-svn-id: svn+ssh://svn.abisource.com/svnroot/enchant/trunk@20834 bcba8976-2d24-0410-9c9c-aab3bd5fdfd6
-rw-r--r--src/aspell/aspell_provider.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/aspell/aspell_provider.c b/src/aspell/aspell_provider.c
index ec0f462..0d5fcfd 100644
--- a/src/aspell/aspell_provider.c
+++ b/src/aspell/aspell_provider.c
@@ -52,7 +52,7 @@ aspell_dict_check (EnchantDict * me, const char *const word, size_t len)
if (val == 0)
return 1;
else if (val > 0)
- return 1;
+ return 0;
else {
enchant_dict_set_error (me, pspell_manager_error_message (manager));
return -1;