[Libsysio-commit] HEAD: libsysio/src access.c
Brought to you by:
lward
From: Lee W. <lw...@us...> - 2007-04-30 16:56:31
|
Update of /cvsroot/libsysio/libsysio/src In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv3499 Modified Files: access.c Log Message: Got rid of the warning about _sysio_getcreds not being used. We'll need the function later but I'm tired of it right now. Index: access.c =================================================================== RCS file: /cvsroot/libsysio/libsysio/src/access.c,v retrieving revision 1.15 retrieving revision 1.16 diff -u -w -b -B -p -r1.15 -r1.16 --- access.c 30 Apr 2007 16:52:20 -0000 1.15 +++ access.c 30 Apr 2007 16:56:25 -0000 1.16 @@ -210,12 +210,14 @@ _sysio_ldcreds(uid_t uid, gid_t gid, str return 0; } +#if 0 static int _sysio_getcreds(struct creds *crp) { return _sysio_ldcreds(getuid(), getgid(), crp); } +#endif /* * Determine if a given access is permitted to a given file. |