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 | ec3d53963064b50ff33e8eff47812aac82f164ba (patch) | |
tree | fd62b3c64b3d395245addd15032744e269dd3e45 /source/param | |
parent | 15c1c848506cdb9e8d19ee9f7c250b90b60b76da (diff) | |
download | samba-ec3d53963064b50ff33e8eff47812aac82f164ba.tar.gz samba-ec3d53963064b50ff33e8eff47812aac82f164ba.tar.xz samba-ec3d53963064b50ff33e8eff47812aac82f164ba.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
Diffstat (limited to 'source/param')
-rw-r--r-- | source/param/loadparm.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/source/param/loadparm.c b/source/param/loadparm.c index d0df198a678..953613fd747 100644 --- a/source/param/loadparm.c +++ b/source/param/loadparm.c @@ -1920,19 +1920,6 @@ int lp_servicenumber(char *pszServiceName) return (iService); } - - - -/******************************************************************* - get a workgroup - but map to standalone if '*' - ******************************************************************/ -char *my_workgroup(void) -{ - char *res = lp_workgroup(); - if (*res == '*') return("STANDALONE"); - return(res); -} - /******************************************************************* a useful volume label function ******************************************************************/ |