[Libsysio-commit] HEAD: libsysio/src namei.c
Brought to you by:
lward
From: Lee W. <lw...@us...> - 2004-03-05 13:29:23
|
Update of /cvsroot/libsysio/libsysio/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25438/src Modified Files: namei.c Log Message: The indication that a directory *might* be an automount candidate is the ISUID flag. Not ISVTX. Changed to reflect that. Index: namei.c =================================================================== RCS file: /cvsroot/libsysio/libsysio/src/namei.c,v retrieving revision 1.11 retrieving revision 1.12 diff -u -w -b -B -p -r1.11 -r1.12 --- namei.c 14 Feb 2004 19:42:59 -0000 1.11 +++ namei.c 5 Mar 2004 13:07:19 -0000 1.12 @@ -252,7 +252,7 @@ _sysio_path_walk(struct pnode *parent, s S_ISDIR(ino->i_mode) && (nd->nd_pno->p_mount->mnt_flags & MOUNT_F_AUTO) && nd->nd_amcnt < MAX_MOUNT_DEPTH && - ino->i_mode & S_ISVTX) { + ino->i_mode & S_ISUID) { struct pnode *pno; /* |