X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;ds=inline;f=Usermode%2FLibraries%2Flibposix.so_src%2Ffcntl.c;fp=Usermode%2FLibraries%2Flibposix.so_src%2Ffcntl.c;h=76d6f6be1b537379f70afc81e274363eef75f2bf;hb=4d184c30a3385600c0d87a2f93b4259c8c973e73;hp=d57bca50c7ff949ff41503105b08683d0f0b0078;hpb=3f9b3f4cb91ce4ada9c892e6f2a3c69dbb9debd6;p=tpg%2Facess2.git diff --git a/Usermode/Libraries/libposix.so_src/fcntl.c b/Usermode/Libraries/libposix.so_src/fcntl.c index d57bca50..76d6f6be 100644 --- a/Usermode/Libraries/libposix.so_src/fcntl.c +++ b/Usermode/Libraries/libposix.so_src/fcntl.c @@ -43,6 +43,7 @@ int fcntl(int fd, int cmd, ...) a_flags |= OPENFLAG_APPEND; // TODO: Extra flags for F_SETFL + _SysDebug("fcntl(%i, F_SETFL, %i)", fd, p_flags); ret = _SysFDFlags(fd, mask, a_flags); if(ret != -1) ret = 0;