diff options
author | Andrew Tridgell <tridge@samba.org> | 1996-08-17 11:37:44 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 1996-08-17 11:37:44 +0000 |
commit | 28177ca73bdbe3f8fb17a608db3df1a39e0e37a4 (patch) | |
tree | d921a3eecc5d2a521a8a79c2a7f3b62a53d51ef0 /source3/lib/util.c | |
parent | 6afac1c3a6fe9530008b91867ff3d364ea415a43 (diff) | |
download | samba-28177ca73bdbe3f8fb17a608db3df1a39e0e37a4.tar.gz samba-28177ca73bdbe3f8fb17a608db3df1a39e0e37a4.tar.bz2 samba-28177ca73bdbe3f8fb17a608db3df1a39e0e37a4.zip |
- added support for Amiga-unix (based on BSD I think)
- changed the order of PROGS and SPROGS in Makefile (SPROGS first)
- another 64 bit cleanup (for INADDR_NONE)
- added paranoia code in DirCacheAdd() to detect looping
- fixed important DirCache flush bug
- rewrote the NetServerEnum code after I found it could return servers
from multiple workgroups at once, and this could cause browsing
havoc. Now a null workgroup query is equivalent to a query for the
servers primary workgroup
- got rid of my_workgroup()
- got rid of "workgroup = *" comment in Makefile. We no longer support
a workgroup of *, users must set the workgroup explicitly
- the wins.dat file was being stored in a different format to what it
was being loaded in - this could cause havoc. fixed.
- uppercase our netbios name and the workgroup name at startup
- if accept fails in main loop when running as a daemon then continue,
don't just exit!
- don't use ./ on smbclient in smbtar
- better code to detect if a process exists
(This used to be commit ec3d53963064b50ff33e8eff47812aac82f164ba)
Diffstat (limited to 'source3/lib/util.c')
-rw-r--r-- | source3/lib/util.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/source3/lib/util.c b/source3/lib/util.c index aeaac29ae1..5ef1d21a7a 100644 --- a/source3/lib/util.c +++ b/source3/lib/util.c @@ -3089,11 +3089,8 @@ BOOL process_exists(int pid) } } - /* a best guess for non root access */ - if (geteuid() != 0) return(True); - - /* otherwise use kill */ - return(pid == getpid() || kill(pid,0) == 0); + /* CGH 8/16/96 - added ESRCH test */ + return(pid == getpid() || kill(pid,0) == 0 || errno != ESRCH); #endif } |