aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ssl/src/tls.erl
diff options
context:
space:
mode:
authorIngela Anderton Andin <[email protected]>2013-06-05 16:40:02 +0200
committerIngela Anderton Andin <[email protected]>2013-06-07 15:49:12 +0200
commit6166867da5cbfe97b09cddf2e079178a2e959c44 (patch)
treeb13c1510144c456f66b6869e8441c74cb7052b50 /lib/ssl/src/tls.erl
parent95866c1dea1851abcaa9854bcba754afee569fca (diff)
downloadotp-6166867da5cbfe97b09cddf2e079178a2e959c44.tar.gz
otp-6166867da5cbfe97b09cddf2e079178a2e959c44.tar.bz2
otp-6166867da5cbfe97b09cddf2e079178a2e959c44.zip
public_key & ssl: Add ASN-1 dependency
As the ASN-1 application relies on a nif in R16 for decodeing (that was not the case in R15), public_key currently has a runtime dependency on ASN-1. Hopefully we will be able to remove this dependency again in the future.
Diffstat (limited to 'lib/ssl/src/tls.erl')
-rw-r--r--lib/ssl/src/tls.erl2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/ssl/src/tls.erl b/lib/ssl/src/tls.erl
index fcecf8196f..bb02695c12 100644
--- a/lib/ssl/src/tls.erl
+++ b/lib/ssl/src/tls.erl
@@ -94,11 +94,13 @@
%%--------------------------------------------------------------------
start() ->
application:start(crypto),
+ application:start(asn1),
application:start(public_key),
application:start(ssl).
start(Type) ->
application:start(crypto, Type),
+ application:start(asn1),
application:start(public_key, Type),
application:start(ssl, Type).