summary refs log tree commit diff stats
path: root/plugins/fishlim
diff options
context:
space:
mode:
authorBakasuraRCE <bakasura@protonmail.ch>2020-07-20 17:58:15 -0500
committerPatrick <tingping@tingping.se>2020-10-16 23:19:10 +0200
commit4758d3705d652b8cda006e8902d8e8c6921cdee1 (patch)
treec1474848388b923847c50f675859668aaf381c45 /plugins/fishlim
parentbbbc2aad1bb3bce3ee5245d827af4afe9eb1b128 (diff)
fishlim: Fix result
Diffstat (limited to 'plugins/fishlim')
-rw-r--r--plugins/fishlim/tests/fake/keystore.c4
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;
 }