yep, freebsd still needs this fix

This commit is contained in:
Bernhard Amann 2013-07-12 21:09:13 +02:00
parent fef3180942
commit e01678d132

View file

@ -23442,6 +23442,9 @@ static int posixFchown(int fd, uid_t uid, gid_t gid){
/* Forward reference */
static int openDirectory(const char*, int*);
/* fix compile on FreeBSD, not sure why needed... */
int fchmod(int, mode_t);
/*
** Many system calls are accessed through pointer-to-functions so that
** they may be overridden at runtime to facilitate fault injection during