From 6d3a107056833e4360baf0354774506a4ff2bec0 Mon Sep 17 00:00:00 2001 From: Tristan Sloughter Date: Sun, 21 Jun 2015 19:39:52 -0500 Subject: [PATCH] use application:start(crypto) instead of crypto:start() --- bootstrap | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/bootstrap b/bootstrap index ca5f4564..62e7fa50 100755 --- a/bootstrap +++ b/bootstrap @@ -4,10 +4,7 @@ main(_Args) -> - case crypto:start() of - ok -> ok; - {error,{already_started,crypto}} -> ok - end, + application:start(crypto), application:start(asn1), application:start(public_key), application:start(ssl),