View | Details | Raw Unified | Return to bug 26498
Collapse All | Expand All

(-)src/lib/libc/gen/opendir.c (-1 / +2 lines)
Lines 110-116 Link Here
110
110
111
		if (fstatfs(fd, &sfb) < 0)
111
		if (fstatfs(fd, &sfb) < 0)
112
			goto fail;
112
			goto fail;
113
		unionstack = !strcmp(sfb.f_fstypename, "union");
113
		unionstack = !strcmp(sfb.f_fstypename, "union")
114
		    || (sfb.f_flags & MNT_UNION);
114
	} else {
115
	} else {
115
		unionstack = 0;
116
		unionstack = 0;
116
	}
117
	}

Return to bug 26498