From: Timo Sirainen Date: Sun, 5 Jun 2016 01:29:00 +0000 (+0300) Subject: lib-dcrypt: Fixed function return type. X-Git-Tag: 2.3.0.rc1~3560 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a21d4eb322ea0c8d6acacbe7f015c5bb74b4c217;p=thirdparty%2Fdovecot%2Fcore.git lib-dcrypt: Fixed function return type. --- diff --git a/src/lib-dcrypt/dcrypt-openssl.c b/src/lib-dcrypt/dcrypt-openssl.c index b8578769b4..24dff266cd 100644 --- a/src/lib-dcrypt/dcrypt-openssl.c +++ b/src/lib-dcrypt/dcrypt-openssl.c @@ -1223,7 +1223,7 @@ int dcrypt_openssl_load_public_key_dovecot_v1(struct dcrypt_public_key **key_r, } static -bool dcrypt_openssl_load_public_key_dovecot_v2(struct dcrypt_public_key **key_r, +int dcrypt_openssl_load_public_key_dovecot_v2(struct dcrypt_public_key **key_r, int len, const char **input, const char **error_r) { if (len != 2 || strlen(input[1]) < 2 || (strlen(input[1])%2) != 0) {