summaryrefslogtreecommitdiffstats
path: root/src/keystore.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/keystore.c')
-rw-r--r--src/keystore.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/keystore.c b/src/keystore.c
index da40d41..c4c7d5e 100644
--- a/src/keystore.c
+++ b/src/keystore.c
@@ -13,7 +13,9 @@
* GNU General Public License for more details.
*/
+#include <errno.h>
+
int __attribute__((weak)) keystore_get_secret(const char *name, const unsigned char **key, int *key_len)
{
- return 0;
+ return -ENOENT;
}