Skip to content

Commit c4193d1

Browse files
committed
add option:xmlns
1 parent dc383c0 commit c4193d1

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/s3fs.cpp

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4540,6 +4540,7 @@ static int my_fuse_opt_proc(void* data, const char* arg, int key, struct fuse_ar
45404540
AdditionalHeader::get()->Dump();
45414541
return 0;
45424542
}
4543+
45434544
if(0 == strcmp(arg, "noxmlns")){
45444545
noxmlns = true;
45454546
return 0;
@@ -4646,6 +4647,12 @@ static int my_fuse_opt_proc(void* data, const char* arg, int key, struct fuse_ar
46464647
S3FS_PRN_EXIT("option secretAccessKey is no longer supported.");
46474648
return -1;
46484649
}
4650+
4651+
// noxmlns defalut is true
4652+
if(0 == strcmp(arg, "xmlns")) {
4653+
noxmlns = false;
4654+
return 0;
4655+
}
46494656
}
46504657
return 1;
46514658
}

0 commit comments

Comments
 (0)