diff options
author | Pierre Fenoll <[email protected]> | 2013-12-13 15:09:38 +0000 |
---|---|---|
committer | Henrik Nord <[email protected]> | 2014-02-14 11:14:13 +0100 |
commit | f2169928a77d5a6b2e3e069b8cf9b8f5300ed543 (patch) | |
tree | 0bae14bbc80d5f51de9949c76b55e9c8ab6dcd26 /lib/ssl/src/ssl_pkix_db.erl | |
parent | d10a115ab1e66938531b87bef20f886013e7b96b (diff) | |
download | otp-f2169928a77d5a6b2e3e069b8cf9b8f5300ed543.tar.gz otp-f2169928a77d5a6b2e3e069b8cf9b8f5300ed543.tar.bz2 otp-f2169928a77d5a6b2e3e069b8cf9b8f5300ed543.zip |
Fix edoc usage errors
Errors discovered using `erldocs`:
Superfluous @hidden tag would exit edoc application;
'Multiple @spec tag': appended a @clear tag after macro condition;
'@spec arity does not match': added missing argument.
Diffstat (limited to 'lib/ssl/src/ssl_pkix_db.erl')
-rw-r--r-- | lib/ssl/src/ssl_pkix_db.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ssl/src/ssl_pkix_db.erl b/lib/ssl/src/ssl_pkix_db.erl index 9de50c8f26..e59aba0618 100644 --- a/lib/ssl/src/ssl_pkix_db.erl +++ b/lib/ssl/src/ssl_pkix_db.erl @@ -115,17 +115,17 @@ add_trusted_certs(_Pid, File, [CertsDb, RefDb, PemChache] = Db) -> new_trusted_cert_entry({MD5, File}, Db) end. %%-------------------------------------------------------------------- --spec cache_pem_file({binary(), binary()}, [db_handle()]) -> {ok, term()}. --spec cache_pem_file(reference(), {binary(), binary()}, [db_handle()]) -> {ok, term()}. %% %% Description: Cache file as binary in DB %%-------------------------------------------------------------------- +-spec cache_pem_file({binary(), binary()}, [db_handle()]) -> {ok, term()}. cache_pem_file({MD5, File}, [_CertsDb, _RefDb, PemChache]) -> {ok, PemBin} = file:read_file(File), Content = public_key:pem_decode(PemBin), insert(MD5, Content, PemChache), {ok, Content}. +-spec cache_pem_file(reference(), {binary(), binary()}, [db_handle()]) -> {ok, term()}. cache_pem_file(Ref, {MD5, File}, [_CertsDb, _RefDb, PemChache]) -> {ok, PemBin} = file:read_file(File), Content = public_key:pem_decode(PemBin), |