diff options
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/fishlim/tests/fake/keystore.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/fishlim/tests/fake/keystore.c b/plugins/fishlim/tests/fake/keystore.c index 855b3451..854f38dc 100644 --- a/plugins/fishlim/tests/fake/keystore.c +++ b/plugins/fishlim/tests/fake/keystore.c @@ -36,12 +36,12 @@ char *keystore_get_key(const char *nick, enum fish_mode *mode) { * Sets a key in the key store file. */ gboolean keystore_store_key(const char *nick, const char *key, enum fish_mode mode) { - return NULL; + return TRUE; } /** * Deletes a nick from the key store. */ gboolean keystore_delete_nick(const char *nick) { - return NULL; + return TRUE; } |