mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-03-31 17:50:26 +08:00
Fix inconsistent return type.
This commit is contained in:
parent
bd84e9a8eb
commit
b8e4161baf
2
oc2/oc.h
2
oc2/oc.h
@ -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.
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user