[Libsysio-commit] HEAD: libsysio/include inode.h
Brought to you by:
lward
From: Lee W. <lw...@us...> - 2008-12-06 18:47:22
|
Update of /cvsroot/libsysio/libsysio/include In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv11611 Modified Files: inode.h Log Message: Fixed INT_READLINK. It was mapping to some sort of half-create plus a setattr. Index: inode.h =================================================================== RCS file: /cvsroot/libsysio/libsysio/include/inode.h,v retrieving revision 1.44 retrieving revision 1.45 diff -u -w -b -B -p -r1.44 -r1.45 --- inode.h 5 Dec 2008 20:25:06 -0000 1.44 +++ inode.h 6 Dec 2008 18:47:14 -0000 1.45 @@ -569,8 +569,8 @@ struct intent { #define INT_SETATTR 0x02 /* set attrs */ #define INT_UPDPARENT 0x04 /* insert/delete */ #define INT_OPEN 0x08 /* open */ -#define INT_CREAT (INT_UPDPARENT|0x10) /* insert */ -#define INT_READLINK 0x12 /* readlink */ +#define INT_CREAT (0x10|INT_UPDPARENT) /* creat obj */ +#define INT_READLINK 0x20 /* readlink */ #define INTENT_INIT(intnt, mask, arg1, arg2) \ do { \ |