diff options
author | Luke Leighton <lkcl@samba.org> | 1999-12-12 21:00:35 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1999-12-12 21:00:35 +0000 |
commit | f6276724bafdb6145c0c7b565172d80cb04516ea (patch) | |
tree | dc898b2020b32c12b02724fb7209bde351afe47e /source3/param | |
parent | 4f8a24522c683761c6f2ee23dba56f6c7913377b (diff) | |
download | samba-f6276724bafdb6145c0c7b565172d80cb04516ea.tar.gz samba-f6276724bafdb6145c0c7b565172d80cb04516ea.tar.bz2 samba-f6276724bafdb6145c0c7b565172d80cb04516ea.zip |
changed function name of get_home_dir() to get_unixhome_dir(), to stop
clash with gnu readline library.
fixed issue with [homes] service not being there - call lp_add_home()
just before starting the msrpc processing.
(This used to be commit 054195df9b6187c663ede5cf4489499abbdc29fc)
Diffstat (limited to 'source3/param')
-rw-r--r-- | source3/param/loadparm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index b7aef21013..82755d05a3 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -2559,7 +2559,7 @@ static void lp_add_auto_services(char *str) homes = lp_servicenumber(HOMES_NAME); for (p=strtok(s,LIST_SEP);p;p=strtok(NULL,LIST_SEP)) { - char *home = get_home_dir(p); + char *home = get_unixhome_dir(p); if (lp_servicenumber(p) >= 0) continue; |