mirror of
https://github.com/s3fs-fuse/s3fs-fuse.git
synced 2024-11-05 12:27:53 +00:00
Fix issue #66 "memset typo" with supplied patch
git-svn-id: http://s3fs.googlecode.com/svn/trunk@195 df820570-a93a-0410-bd06-b72b767a4274
This commit is contained in:
parent
6ccbc134c6
commit
ca547530f8
@ -1647,7 +1647,7 @@ static struct fuse_operations s3fs_oper;
|
|||||||
|
|
||||||
int
|
int
|
||||||
main(int argc, char *argv[]) {
|
main(int argc, char *argv[]) {
|
||||||
memset(&s3fs_oper, sizeof(s3fs_oper), 0);
|
memset(&s3fs_oper, 0, sizeof(s3fs_oper));
|
||||||
|
|
||||||
struct fuse_args custom_args = FUSE_ARGS_INIT(argc, argv);
|
struct fuse_args custom_args = FUSE_ARGS_INIT(argc, argv);
|
||||||
fuse_opt_parse(&custom_args, NULL, NULL, my_fuse_opt_proc);
|
fuse_opt_parse(&custom_args, NULL, NULL, my_fuse_opt_proc);
|
||||||
|
Loading…
Reference in New Issue
Block a user