summaryrefslogtreecommitdiff
path: root/p11p-daemon/src/p11p_sup.erl
diff options
context:
space:
mode:
Diffstat (limited to 'p11p-daemon/src/p11p_sup.erl')
-rw-r--r--p11p-daemon/src/p11p_sup.erl3
1 files changed, 2 insertions, 1 deletions
diff --git a/p11p-daemon/src/p11p_sup.erl b/p11p-daemon/src/p11p_sup.erl
index b8bffe2..76c7551 100644
--- a/p11p-daemon/src/p11p_sup.erl
+++ b/p11p-daemon/src/p11p_sup.erl
@@ -20,5 +20,6 @@ start_link() ->
%% Child :: {Id,StartFunc,Restart,Shutdown,Type,Modules}
init([]) ->
{ok, {{one_for_all, 10, 10}, [
- ?CHILD(p11p_config, worker)
+ ?CHILD(p11p_config, worker),
+ ?CHILD(p11p_listener, worker)
]}}.