View | Details | Raw Unified | Return to bug 232702 | Differences between
and this patch

Collapse All | Expand All

(-)b/usr.bin/fstat/fuser.c (-3 / +4 lines)
Lines 254-262 do_fuser(int argc, char *argv[]) Link Here
254
	 * Walk through process table and look for matching files.
254
	 * Walk through process table and look for matching files.
255
	 */
255
	 */
256
	p = procs;
256
	p = procs;
257
	while(cnt--)
257
	while(cnt--) {
258
		if (p->ki_stat != SZOMB)
258
		if (p->ki_stat != SZOMB)
259
			dofiles(procstat, p++, reqfiles, nfiles);
259
			dofiles(procstat, p, reqfiles, nfiles);
260
		p++;
261
	}
260
262
261
	for (i = 0; i < nfiles; i++) {
263
	for (i = 0; i < nfiles; i++) {
262
		fprintf(stderr, "%s:", reqfiles[i].name);
264
		fprintf(stderr, "%s:", reqfiles[i].name);
263
- 

Return to bug 232702