]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
lib-dcrypt: Fixed function return type.
authorTimo Sirainen <timo.sirainen@dovecot.fi>
Sun, 5 Jun 2016 01:29:00 +0000 (04:29 +0300)
committerTimo Sirainen <timo.sirainen@dovecot.fi>
Sun, 5 Jun 2016 01:29:00 +0000 (04:29 +0300)
src/lib-dcrypt/dcrypt-openssl.c

index b8578769b46a246750b62b5c8957f98f01ac760b..24dff266cd2b8a73b7166eff39a63c7b6d4227f5 100644 (file)
@@ -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) {