diff options
author | BakasuraRCE <bakasura@protonmail.ch> | 2020-07-20 17:58:15 -0500 |
---|---|---|
committer | Patrick <tingping@tingping.se> | 2020-10-16 23:19:10 +0200 |
commit | 4758d3705d652b8cda006e8902d8e8c6921cdee1 (patch) | |
tree | c1474848388b923847c50f675859668aaf381c45 /plugins/fishlim/tests | |
parent | bbbc2aad1bb3bce3ee5245d827af4afe9eb1b128 (diff) |
fishlim: Fix result
Diffstat (limited to 'plugins/fishlim/tests')
-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; } |