am 1a39a994: Merge "Correct magic number on umount2"

* commit '1a39a994d9c1d407fec17e0b9a00383d50c48085':
  Correct magic number on umount2
This commit is contained in:
Elliott Hughes 2015-04-24 03:28:43 +00:00 committed by Android Git Automerger
commit 2869398351

View file

@ -1875,7 +1875,7 @@ static int run(const char* source_path, const char* dest_path, uid_t uid,
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){