diff options
author | Tristan Sloughter <t@crashfast.com> | 2015-06-21 19:39:52 -0500 |
---|---|---|
committer | Tristan Sloughter <t@crashfast.com> | 2015-06-21 19:39:52 -0500 |
commit | 6d3a107056833e4360baf0354774506a4ff2bec0 (patch) | |
tree | ea1c2c7c236b754d2048195f9efb564748ee2e98 | |
parent | 9df51005e636bf9c0c63fe5687a221eabedeefe4 (diff) |
use application:start(crypto) instead of crypto:start()
-rwxr-xr-x | bootstrap | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -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), |