raster pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=5da1229484868927a3bec3754b89dba42d130b58

commit 5da1229484868927a3bec3754b89dba42d130b58
Author: Carsten Haitzler (Rasterman) <ras...@rasterman.com>
Date:   Mon Aug 24 21:28:16 2020 +0100

    ecore con - curl - fix error map to map right enum
    
    this would print the wrong error to eina log - this fixes this
    
    @fix
---
 src/lib/ecore_con/efl_net_dialer_http.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/lib/ecore_con/efl_net_dialer_http.c 
b/src/lib/ecore_con/efl_net_dialer_http.c
index b6467b2c23..7215d9a195 100644
--- a/src/lib/ecore_con/efl_net_dialer_http.c
+++ b/src/lib/ecore_con/efl_net_dialer_http.c
@@ -1674,7 +1674,7 @@ _efl_net_dialer_http_efl_io_writer_write(Eo *o, 
Efl_Net_Dialer_Http_Data *pd, Ei
                                  CURL_CSELECT_OUT, &pd->cm->running);
    if (rm != CURLM_OK)
      {
-        err = _curlcode_to_eina_error(rm);
+        err = _curlmcode_to_eina_error(rm);
         ERR("dialer=%p could not trigger socket=" SOCKET_FMT " (fdhandler=%p) 
action: %s",
             o, pd->fd, pd->fdhandler, eina_error_msg_get(err));
         goto error;

-- 


Reply via email to