commit | b9aed74b146beb7499ebc5775e8ae179d16900ef | [log] [tgz] |
---|---|---|
author | San Mehat <san@google.com> | Thu Feb 04 15:07:01 2010 -0800 |
committer | San Mehat <san@google.com> | Thu Feb 04 15:07:01 2010 -0800 |
tree | 64c7bbb8a16c2510b648452334d25e5e6d467144 | |
parent | f5c61980969a0b49bda37b5dc94ffe675ebd5a5a [diff] [blame] |
vold: Fix a few bugs - share command was taking wrong arguments - shared command was returning two termination codes - Force FAT32 cluster size to 4k when formatting Signed-off-by: San Mehat <san@google.com>
diff --git a/VolumeManager.cpp b/VolumeManager.cpp index 96a691b..ba92768 100644 --- a/VolumeManager.cpp +++ b/VolumeManager.cpp
@@ -537,9 +537,9 @@ } if (v->getState() != Volume::State_Shared) { - *enabled = true; - } else { *enabled = false; + } else { + *enabled = true; } return 0; }