Don't output extraneous tab

Submitted by:	Garance A Drosehn <gad@eclipse.its.rpi.edu>
This commit is contained in:
brian 1997-05-13 20:52:31 +00:00
parent e3f3db531c
commit dc36a1d5ad

View File

@ -821,13 +821,17 @@ prstat()
return;
}
(void) close(fd);
putchar('\t');
/* print out the contents of the status file, if it exists */
(void) sprintf(line, "%s/%s", SD, ST);
fd = open(line, O_RDONLY);
if (fd >= 0) {
(void) flock(fd, LOCK_SH);
(void) fstat(fd, &stbuf);
if (stbuf.st_size > 0) {
putchar('\t');
while ((i = read(fd, line, sizeof(line))) > 0)
(void) fwrite(line, 1, i, stdout);
}
(void) close(fd); /* unlocks as well */
}
}