diff options
author | Andrew Tridgell <tridge@samba.org> | 1996-10-05 02:54:37 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 1996-10-05 02:54:37 +0000 |
commit | 38087ccb4071bfff29801026e2bf5c47565305b4 (patch) | |
tree | 41e9bfd4677d25ec700217a58df888cefae8c871 /source3/lib | |
parent | 32e9d441afe29dde38c2ad8f089f396bdc6199ee (diff) | |
download | samba-38087ccb4071bfff29801026e2bf5c47565305b4.tar.gz samba-38087ccb4071bfff29801026e2bf5c47565305b4.tar.bz2 samba-38087ccb4071bfff29801026e2bf5c47565305b4.zip |
- use workgroup from smb.conf in smbclient
- change debug level on clitar stuff
- define MAP_FILE if not defined
- ensure we never set authoritative on queries in nmbd
- fake a positive response to SMBioctl, apparently this is needed for
some WfWg printer drivers
- deny file access for non-fcbopen queries when (access_allowed == AREAD && flags == O_RDWR)
- add sys_waitpid()
(This used to be commit 61e3116e573637d6b5a878eeb8db72831e3c5bd1)
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/system.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/source3/lib/system.c b/source3/lib/system.c index 81e9a6679a..5ece0ca024 100644 --- a/source3/lib/system.c +++ b/source3/lib/system.c @@ -142,6 +142,18 @@ int sys_stat(char *fname,struct stat *sbuf) } /******************************************************************* +The wait() calls vary between systems +********************************************************************/ +int sys_waitpid(pid_t pid,int *status,int options) +{ +#ifdef USE_WAITPID + return waitpid(pid,status,options); +#else + return wait4(pid,status,options,NULL); +#endif +} + +/******************************************************************* don't forget lstat() ********************************************************************/ int sys_lstat(char *fname,struct stat *sbuf) |