From 3d451b3dc69d91b04c1153f63436b63940287b13 Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Tue, 5 Oct 2010 03:34:02 +0200 Subject: Sending work now, too --- src/core/ephraim_conv_man.erl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/core/ephraim_conv_man.erl') diff --git a/src/core/ephraim_conv_man.erl b/src/core/ephraim_conv_man.erl index 617ccc4..adfa24d 100644 --- a/src/core/ephraim_conv_man.erl +++ b/src/core/ephraim_conv_man.erl @@ -1,11 +1,11 @@ -module(ephraim_conv_man). -behaviour(supervisor). --export([start_link/1]). +-export([start_link/3]). -export([init/1]). -start_link(EventManager) -> +start_link(EventManager, Conn, Roster) -> {ok, Pid} = supervisor:start_link(?MODULE, []), - ephraim_conv_handler:start(Pid, EventManager), + ephraim_conv_handler:start(Pid, EventManager, Conn, Roster), {ok, Pid}. init(_Args) -> -- cgit v1.2.3