=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/rdistd/filesys.c,v retrieving revision 1.1 retrieving revision 1.2 diff -c -r1.1 -r1.2 *** src/usr.bin/rdistd/filesys.c 1996/02/03 12:12:57 1.1 --- src/usr.bin/rdistd/filesys.c 1996/03/05 03:16:17 1.2 *************** *** 33,39 **** #ifndef lint static char RCSid[] = ! "$Id: filesys.c,v 1.1 1996/02/03 12:12:57 dm Exp $"; static char sccsid[] = "@(#)filesys.c"; --- 33,39 ---- #ifndef lint static char RCSid[] = ! "$Id: filesys.c,v 1.2 1996/03/05 03:16:17 dm Exp $"; static char sccsid[] = "@(#)filesys.c"; *************** *** 355,361 **** if ((mnt = (mntent_t *) getmntpt(path, statbuf, isvalid)) == NULL) return(-1); ! if (strcmp(mnt->me_type, METYPE_NFS) == 0) return(1); return(0); --- 355,365 ---- if ((mnt = (mntent_t *) getmntpt(path, statbuf, isvalid)) == NULL) return(-1); ! /* ! * We treat "cachefs" just like NFS ! */ ! if ((strcmp(mnt->me_type, METYPE_NFS) == 0) || ! (strcmp(mnt->me_type, "cachefs") == 0)) return(1); return(0);