From 0ff865f224c9f497babda184717dd044f1374bd7 Mon Sep 17 00:00:00 2001 From: jtc Date: Sat, 4 Dec 1993 01:08:35 +0000 Subject: [PATCH] Use instead of . --- usr.bin/whereis/whereis.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/usr.bin/whereis/whereis.c b/usr.bin/whereis/whereis.c index 16a9178062e7..a2263da83596 100644 --- a/usr.bin/whereis/whereis.c +++ b/usr.bin/whereis/whereis.c @@ -39,11 +39,11 @@ char copyright[] = #ifndef lint /*static char sccsid[] = "from: @(#)whereis.c 5.5 (Berkeley) 4/18/91";*/ -static char rcsid[] = "$Id: whereis.c,v 1.3 1993/08/01 18:03:00 mycroft Exp $"; +static char rcsid[] = "$Id: whereis.c,v 1.4 1993/12/04 01:08:35 jtc Exp $"; #endif /* not lint */ #include -#include +#include #include #include @@ -348,7 +348,7 @@ findin(dir, cp) char *dir, *cp; { DIR *dirp; - struct direct *dp; + struct dirent *dp; dirp = opendir(dir); if (dirp == NULL)