summaryrefslogtreecommitdiffstats
path: root/source/param/loadparm.c
diff options
context:
space:
mode:
authorLuke Leighton <lkcl@samba.org>1999-12-12 21:00:35 +0000
committerLuke Leighton <lkcl@samba.org>1999-12-12 21:00:35 +0000
commit054195df9b6187c663ede5cf4489499abbdc29fc (patch)
tree5125f9e510b9a6b2a473e039d0d12f58dc7c4855 /source/param/loadparm.c
parentcaa50525220b0d0250fa139367593c2de2c12135 (diff)
downloadsamba-054195df9b6187c663ede5cf4489499abbdc29fc.tar.gz
samba-054195df9b6187c663ede5cf4489499abbdc29fc.tar.xz
samba-054195df9b6187c663ede5cf4489499abbdc29fc.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.
Diffstat (limited to 'source/param/loadparm.c')
-rw-r--r--source/param/loadparm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/param/loadparm.c b/source/param/loadparm.c
index b7aef210138..82755d05a30 100644
--- a/source/param/loadparm.c
+++ b/source/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;