* fix compilation when curl is not available

* small formatting


SVN revision: 41968
devs/devilhorns/wayland_egl
Vincent Torri 15 years ago
parent d7bbc05b12
commit e005dd2479
  1. 7
      legacy/ecore/src/lib/ecore_con/ecore_con_url.c

@ -593,8 +593,9 @@ ecore_con_url_received_bytes_get(Ecore_Con_Url *url_con)
}
return url_con->received;
#endif
#else
return 0;
#endif
}
/**
@ -613,7 +614,11 @@ ecore_con_url_received_bytes_get(Ecore_Con_Url *url_con)
EAPI const Eina_List *
ecore_con_url_response_headers_get(Ecore_Con_Url *url_con)
{
#ifdef HAVE_CURL
return url_con->response_headers;
#else
return NULL;
#endif
}
/**

Loading…
Cancel
Save