Changeset 23465
- Timestamp:
- 12/12/07 13:54:32 (12 months ago)
- Files:
-
- 1 modified
-
trunk/launchd/src/launchd_core_logic.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/launchd/src/launchd_core_logic.c
r23464 r23465 6702 6702 do_unmounts(void) 6703 6703 { 6704 struct statfs buf[ 100];6704 struct statfs buf[250]; 6705 6705 int i, found, returned; 6706 6706 … … 6713 6713 } 6714 6714 6715 for (i = 0; i < returned; i++) { 6715 /* Work backwards due to mounts on top of mounts */ 6716 for (i = returned - 1; i >= 0; i--) { 6716 6717 if (strcmp(buf[i].f_mntonname, "/") == 0) { 6717 6718 continue;

