Fixed Issue 342

1) Segmentation fault on connect on ppc64( Issue 342 )
    The third parameter of curl_easy_getinfo() is wrong.
    It must be "long" but specified "CURLcode".
    Fixes this issue.



git-svn-id: http://s3fs.googlecode.com/svn/trunk@440 df820570-a93a-0410-bd06-b72b767a4274
This commit is contained in:
ggtakec@gmail.com 2013-06-05 02:13:39 +00:00
parent 8ef1c7aa3a
commit b921844ff8

View File

@ -3705,7 +3705,7 @@ static int s3fs_utimens_nocopy(const char *path, const struct timespec ts[2]) {
static int s3fs_check_service(void) {
CURL *curl = NULL;
int result = CURLE_OK;
CURLcode responseCode;
long responseCode;
BodyData body;
FGPRINT("s3fs_check_service\n");