Fix inconsistent return type.

This commit is contained in:
Bas Couwenberg 2015-11-10 00:19:33 +01:00
parent bd84e9a8eb
commit b8e4161baf
3 changed files with 5 additions and 5 deletions

View File

@ -537,7 +537,7 @@ extern OCerror oc_svcerrordata(OClink link, char** codep,
note that this may or may not be the same as returned
by oc_svcerrordata.
*/
extern int oc_httpcode(OClink);
extern OCerror oc_httpcode(OClink);
/*
(Re-)initialize the oc library as if nothing had been called.

View File

@ -88,11 +88,11 @@ fail:
return OCTHROW(OC_ECURL);
}
int
OCerror
ocfetchurl(CURL* curl, const char* url, OCbytes* buf, long* filetime,
struct OCcredentials* creds)
{
int stat = OC_NOERR;
OCerror stat = OC_NOERR;
CURLcode cstat = CURLE_OK;
size_t len;
long httpcode = 0;

View File

@ -408,10 +408,10 @@ done:
return stat;
}
int
OCerror
ocrc_process(OCstate* state)
{
int stat = 0;
OCerror stat = OC_NOERR;
char* value = NULL;
OCURI* uri = state->uri;
char* url_userpwd = NULL;