From 10726a0601e0622b21e8f94ca033b0745ed49229 Mon Sep 17 00:00:00 2001 From: smitsohu Date: Sat, 2 Mar 2019 17:59:32 +0100 Subject: more cleanup: remove MS_REC from tmpfs mounts --- test/filters/syscall_test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test') diff --git a/test/filters/syscall_test.c b/test/filters/syscall_test.c index 6952c751c..2005f2109 100644 --- a/test/filters/syscall_test.c +++ b/test/filters/syscall_test.c @@ -69,7 +69,7 @@ int main(int argc, char **argv) { } else if (strcmp(argv[1], "mount") == 0) { printf("before mount\n"); - if (mount("tmpfs", "/tmp", "tmpfs", MS_NOSUID | MS_STRICTATIME | MS_REC, "mode=755,gid=0") < 0) { + if (mount("tmpfs", "/tmp", "tmpfs", MS_NOSUID | MS_STRICTATIME, "mode=755,gid=0") < 0) { perror("mount"); } printf("after mount\n"); -- cgit v1.2.3-54-g00ecf