fishlim: Fix result

This commit is contained in:
BakasuraRCE 2020-07-20 17:58:15 -05:00 committed by Patrick
parent bbbc2aad1b
commit 4758d3705d

View File

@ -36,12 +36,12 @@ char *keystore_get_key(const char *nick, enum fish_mode *mode) {
* Sets a key in the key store file. * Sets a key in the key store file.
*/ */
gboolean keystore_store_key(const char *nick, const char *key, enum fish_mode mode) { 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. * Deletes a nick from the key store.
*/ */
gboolean keystore_delete_nick(const char *nick) { gboolean keystore_delete_nick(const char *nick) {
return NULL; return TRUE;
} }