ecore con - curl - fix error map to map right enum

this would print the wrong error to eina log - this fixes this

@fix
This commit is contained in:
Carsten Haitzler 2020-08-24 21:28:16 +01:00
parent 805545ab68
commit 5da1229484
1 changed files with 1 additions and 1 deletions

View File

@ -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;