Skip to content

Commit

Permalink
readlink() -> s3_open
Browse files Browse the repository at this point in the history
  • Loading branch information
benlemasurier committed Feb 2, 2012
1 parent 715a952 commit 5c9e0f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stormfs.c
Expand Up @@ -1076,7 +1076,7 @@ stormfs_readlink(const char *path, char *buf, size_t size)
if((fp = fdopen(fd, "a+")) == NULL)
return -errno;

if((result = stormfs_curl_get_file(path, fp)) != 0) {
if((result = s3_open(path, fp)) != 0) {
fclose(fp);
return result;
}
Expand Down

0 comments on commit 5c9e0f1

Please sign in to comment.