From 86737b75f7a14378cda7bf5c3da1a301ca134f7c Mon Sep 17 00:00:00 2001 From: Marcel Hollerbach Date: Wed, 20 Mar 2019 08:34:33 +0100 Subject: [PATCH] efl_con: fixup copy'n paste error please see https://phab.enlightenment.org/D8411#151797, it appears here was a copy and paste error. This fixes the ecore_con test suite Reviewed-by: YeongJong Lee Differential Revision: https://phab.enlightenment.org/D8419 --- src/lib/ecore_con/efl_net_dialer_simple.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/ecore_con/efl_net_dialer_simple.c b/src/lib/ecore_con/efl_net_dialer_simple.c index 2944d76..111874e 100644 --- a/src/lib/ecore_con/efl_net_dialer_simple.c +++ b/src/lib/ecore_con/efl_net_dialer_simple.c @@ -68,7 +68,7 @@ _efl_net_dialer_simple_efl_object_invalidate(Eo *o, Efl_Net_Dialer_Simple_Data * if (inner_io) { efl_event_callback_forwarder_del(inner_io, EFL_NET_DIALER_EVENT_DIALER_ERROR, o); - efl_event_callback_forwarder_del(inner_io, EFL_NET_DIALER_EVENT_DIALER_CONNECTED, o); + efl_event_callback_forwarder_del(inner_io, EFL_NET_DIALER_EVENT_DIALER_RESOLVED, o); efl_event_callback_forwarder_del(inner_io, EFL_NET_DIALER_EVENT_DIALER_CONNECTED, o); if (efl_parent_get(inner_io) == o) efl_parent_set(inner_io, NULL); @@ -98,7 +98,7 @@ _efl_net_dialer_simple_efl_io_buffered_stream_inner_io_set(Eo *o, Efl_Net_Dialer EINA_SAFETY_ON_FALSE_RETURN(efl_isa(io, EFL_NET_DIALER_INTERFACE)); efl_io_buffered_stream_inner_io_set(efl_super(o, MY_CLASS), io); efl_event_callback_forwarder_add(io, EFL_NET_DIALER_EVENT_DIALER_ERROR, o); - efl_event_callback_forwarder_add(io, EFL_NET_DIALER_EVENT_DIALER_CONNECTED, o); + efl_event_callback_forwarder_add(io, EFL_NET_DIALER_EVENT_DIALER_RESOLVED, o); efl_event_callback_forwarder_add(io, EFL_NET_DIALER_EVENT_DIALER_CONNECTED, o); /* apply pending dialer values */ if (pd->pending.proxy_url) -- 2.7.4