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 | 054195df9b6187c663ede5cf4489499abbdc29fc (patch) | |
tree | 5125f9e510b9a6b2a473e039d0d12f58dc7c4855 /source/smbd/reply.c | |
parent | caa50525220b0d0250fa139367593c2de2c12135 (diff) | |
download | samba-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/smbd/reply.c')
-rw-r--r-- | source/smbd/reply.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/smbd/reply.c b/source/smbd/reply.c index 10146c1287c..fed82b5e545 100644 --- a/source/smbd/reply.c +++ b/source/smbd/reply.c @@ -765,7 +765,7 @@ user %s attempted down-level SMB connection\n", user)); lp_servicenumber(user) < 0) { int homes = lp_servicenumber(HOMES_NAME); - char *home = get_home_dir(user); + char *home = get_unixhome_dir(user); if (homes >= 0 && home) { pstring home_dir; |