diff options
author | Bruce Evans <bde@FreeBSD.org> | 1996-09-24 08:08:11 +0000 |
---|---|---|
committer | Bruce Evans <bde@FreeBSD.org> | 1996-09-24 08:08:11 +0000 |
commit | 0c8ea4d48c74cfc48c410d6c466f191a49f6afbd (patch) | |
tree | a7dcc2bf16ed815097f05a03a82f3f704338c35d /usr.bin/rwho | |
parent | 251d6f360e61546091814671dea25c6e1965db8b (diff) | |
download | src-test2-0c8ea4d48c74cfc48c410d6c466f191a49f6afbd.tar.gz src-test2-0c8ea4d48c74cfc48c410d6c466f191a49f6afbd.zip |
Notes
Diffstat (limited to 'usr.bin/rwho')
-rw-r--r-- | usr.bin/rwho/rwho.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/rwho/rwho.c b/usr.bin/rwho/rwho.c index 0f6570e34511..9ba05e275e56 100644 --- a/usr.bin/rwho/rwho.c +++ b/usr.bin/rwho/rwho.c @@ -42,9 +42,9 @@ static char sccsid[] = "@(#)rwho.c 8.1 (Berkeley) 6/6/93"; #endif /* not lint */ #include <sys/param.h> -#include <sys/dir.h> #include <sys/file.h> #include <protocols/rwhod.h> +#include <dirent.h> #include <stdio.h> #include <time.h> #include <string.h> @@ -78,7 +78,7 @@ main(argc, argv) extern char *optarg; extern int optind; int ch; - struct direct *dp; + struct dirent *dp; int cc, width; register struct whod *w = &wd; register struct whoent *we; |