summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLinus Nordberg <linus@nordu.net>2014-05-01 18:03:19 +0200
committerLinus Nordberg <linus@nordu.net>2014-05-01 18:03:19 +0200
commit9cc815e7f7339b77b1ec36c55012a51df30bb1f8 (patch)
treec187466c6436fee0b6bd3a64b45e4148cd339bec /src
parent339656a35441a5d7d02282e6a5c6cdfeaf0571d6 (diff)
Follow changes to headers.
Diffstat (limited to 'src')
-rw-r--r--src/plop.erl3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plop.erl b/src/plop.erl
index 6ffc856..e5432bc 100644
--- a/src/plop.erl
+++ b/src/plop.erl
@@ -21,6 +21,7 @@
handle_cast/2, handle_info/2, code_change/3]).
-include("plop.hrl").
+-include("db.hrl").
-include_lib("public_key/include/public_key.hrl").
-include_lib("eunit/include/eunit.hrl").
@@ -31,7 +32,7 @@
hashtree :: ht:head()}).
start_link() ->
- start_link("src/test/rsakey.pem", "sikrit"). % FIXME: Remove.
+ start_link("test/rsakey.pem", "sikrit"). % FIXME: Remove.
start_link(Keyfile, Passphrase) ->
gen_server:start_link({local, ?MODULE}, ?MODULE, [Keyfile, Passphrase], []).