=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/file/Attic/fsmagic.c,v retrieving revision 1.5 retrieving revision 1.6 diff -c -r1.5 -r1.6 *** src/usr.bin/file/Attic/fsmagic.c 1999/12/06 00:32:29 1.5 --- src/usr.bin/file/Attic/fsmagic.c 2001/11/19 19:02:13 1.6 *************** *** 1,4 **** ! /* $OpenBSD: fsmagic.c,v 1.5 1999/12/06 00:32:29 deraadt Exp $ */ /* * fsmagic - magic based on filesystem info - directory, special files, etc. --- 1,4 ---- ! /* $OpenBSD: fsmagic.c,v 1.6 2001/11/19 19:02:13 mpech Exp $ */ /* * fsmagic - magic based on filesystem info - directory, special files, etc. *************** *** 53,59 **** #include "file.h" #ifndef lint ! static char *moduleid = "$OpenBSD: fsmagic.c,v 1.5 1999/12/06 00:32:29 deraadt Exp $"; #endif /* lint */ int --- 53,59 ---- #include "file.h" #ifndef lint ! static char *moduleid = "$OpenBSD: fsmagic.c,v 1.6 2001/11/19 19:02:13 mpech Exp $"; #endif /* lint */ int *************** *** 108,114 **** case S_IFLNK: { char buf[BUFSIZ+4]; ! register int nch; struct stat tstatbuf; if ((nch = readlink(fn, buf, BUFSIZ-1)) <= 0) { --- 108,114 ---- case S_IFLNK: { char buf[BUFSIZ+4]; ! int nch; struct stat tstatbuf; if ((nch = readlink(fn, buf, BUFSIZ-1)) <= 0) {