diff options
author | Jeremy Allison <jra@samba.org> | 2006-09-02 02:04:41 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:39:46 -0500 |
commit | d62c3cff518ffd701b967bb12b487f097b550c38 (patch) | |
tree | 2a6fc6f46c2716118f9daef564bd5c56cf314d34 /source3/nsswitch | |
parent | ef92f91cd7fa7c6dfa3c805882083c951cb3add6 (diff) | |
download | samba-d62c3cff518ffd701b967bb12b487f097b550c38.tar.gz samba-d62c3cff518ffd701b967bb12b487f097b550c38.tar.bz2 samba-d62c3cff518ffd701b967bb12b487f097b550c38.zip |
r17997: Ensure lockdir exists for winbindd. Store tmp
krb5.conf files under lockdir, not privatedir.
Jeremy.
(This used to be commit c59eff3e53f5bfae3a9fb136e8566628339863ad)
Diffstat (limited to 'source3/nsswitch')
-rw-r--r-- | source3/nsswitch/winbindd.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source3/nsswitch/winbindd.c b/source3/nsswitch/winbindd.c index f6e742ac20..df8f821c8b 100644 --- a/source3/nsswitch/winbindd.c +++ b/source3/nsswitch/winbindd.c @@ -963,6 +963,10 @@ int main(int argc, char **argv) exit(1); } + if (!directory_exist(lp_lockdir(), NULL)) { + mkdir(lp_lockdir(), 0755); + } + /* Setup names. */ if (!init_names()) |