diff options
author | Andrew Tridgell <tridge@samba.org> | 2000-06-10 13:38:07 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2000-06-10 13:38:07 +0000 |
commit | 52cb05678a9b08b5aa7dbe13ae6b54ff9ee4ecac (patch) | |
tree | 3d8dfdc81837b743cbfd383b6f9203df5e4c5285 /source3/lib | |
parent | a9a512192d05d6559d0315be96e0bfcf8800f69e (diff) | |
download | samba-52cb05678a9b08b5aa7dbe13ae6b54ff9ee4ecac.tar.gz samba-52cb05678a9b08b5aa7dbe13ae6b54ff9ee4ecac.tar.bz2 samba-52cb05678a9b08b5aa7dbe13ae6b54ff9ee4ecac.zip |
continued the split of the kernel level oplocks code into a more
modular form. In this pass I added oplock_irix.c and added a "struct
kernel_oplocks" that describes a kernel oplock implementation.
(This used to be commit b5ceab810292602ea9a81696c20a781c16b706c2)
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/system.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/lib/system.c b/source3/lib/system.c index 3a9cca6a72..2a99ae779e 100644 --- a/source3/lib/system.c +++ b/source3/lib/system.c @@ -391,6 +391,8 @@ int sys_chroot(const char *dname) DEBUG(1,("WARNING: no chroot!\n")); done=1; } + errno = ENOSYS; + return -1; #else return(chroot(dname)); #endif |