diff options
author | Jeremy Allison <jra@samba.org> | 2001-09-25 20:21:21 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2001-09-25 20:21:21 +0000 |
commit | 6ddcd8a3bcef32694d9d753ff91cced71f5ca3a8 (patch) | |
tree | 45eca65d1dc6bc3534e1178a35cbeff6955a8295 /source3/param | |
parent | c1af3aabcf35e7d5d3bb82e9d0c7d2f15f6d5f26 (diff) | |
download | samba-6ddcd8a3bcef32694d9d753ff91cced71f5ca3a8.tar.gz samba-6ddcd8a3bcef32694d9d753ff91cced71f5ca3a8.tar.bz2 samba-6ddcd8a3bcef32694d9d753ff91cced71f5ca3a8.zip |
Fixup passdb stuff to add new nisplus and ldap backends.
Jeremy.
(This used to be commit 611bf806d569b70edabbc04a2f5408142370a550)
Diffstat (limited to 'source3/param')
-rw-r--r-- | source3/param/loadparm.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index 9b0759b2d5..9366af5e78 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -3763,3 +3763,12 @@ BOOL lp_list_substitute(char **list, const char *pattern, const char *insert) return True; } + +/**************************************************************** + Compatibility fn. for 2.2.2 code..... +*****************************************************************/ + +void get_private_directory(pstring privdir) +{ + pstrcpy (privdir, lp_private_dir()); +} |