commit | dac7f85d16c5bee79b6d944e0635fa1b6bceebb8 | [log] [tgz] |
---|---|---|
author | Elliott Hughes <enh@google.com> | Fri Apr 24 04:01:13 2015 +0000 |
committer | Android Git Automerger <android-git-automerger@android.com> | Fri Apr 24 04:01:13 2015 +0000 |
tree | f13e72dcf5424021439fad2079e031eb471e4766 | |
parent | 45a2329b2d3e928d48f546d6d6822620e0dac057 [diff] | |
parent | 3d671000c7268fcfcaf5445734b88428af26c294 [diff] |
am 3d671000: am 28693983: am 1a39a994: Merge "Correct magic number on umount2" * commit '3d671000c7268fcfcaf5445734b88428af26c294': Correct magic number on umount2
diff --git a/sdcard/sdcard.c b/sdcard/sdcard.c index 4712e90..f8b23a3 100644 --- a/sdcard/sdcard.c +++ b/sdcard/sdcard.c
@@ -1866,7 +1866,7 @@ struct fuse fuse; /* cleanup from previous instance, if necessary */ - umount2(dest_path, 2); + umount2(dest_path, MNT_DETACH); fd = open("/dev/fuse", O_RDWR); if (fd < 0){