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

(-)df.c (-2 / +3 lines)
Lines 95-101 Link Here
95
	return (a > b ? a : b);
95
	return (a > b ? a : b);
96
}
96
}
97
97
98
static int	aflag = 0, cflag, hflag, iflag, kflag, lflag = 0, nflag, Tflag;
98
static int	aflag = 0, cflag, hflag, iflag, kflag, lflag = 0, nflag, Tflag, tflag = 0;
99
static int	thousands;
99
static int	thousands;
100
static struct	ufs_args mdev;
100
static struct	ufs_args mdev;
101
101
Lines 160-166 Link Here
160
			hflag = 0;
160
			hflag = 0;
161
			break;
161
			break;
162
		case 'l':
162
		case 'l':
163
			if (vfslist != NULL)
163
			if (vfslist != NULL && tflag)
164
				errx(1, "-l and -t are mutually exclusive.");
164
				errx(1, "-l and -t are mutually exclusive.");
165
			vfslist = makevfslist(makenetvfslist());
165
			vfslist = makevfslist(makenetvfslist());
166
			lflag = 1;
166
			lflag = 1;
Lines 179-184 Link Here
179
				errx(1, "only one -t option may be specified");
179
				errx(1, "only one -t option may be specified");
180
			fstype = optarg;
180
			fstype = optarg;
181
			vfslist = makevfslist(optarg);
181
			vfslist = makevfslist(optarg);
182
			tflag = 1;
182
			break;
183
			break;
183
		case 'T':
184
		case 'T':
184
			Tflag = 1;
185
			Tflag = 1;

Return to bug 208169