diff options
author | Michael Adam <obnox@samba.org> | 2009-01-16 00:44:55 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2009-01-16 01:02:24 +0100 |
commit | 0cea990d75d957fc12c17d0944093a76cfa06d81 (patch) | |
tree | 6da1c1b36ec74173d3b49cfbdad05b159f7cfb62 | |
parent | 99ef38c84fa902494b7b6fe8e75dd78303a5f7a9 (diff) | |
download | samba-0cea990d75d957fc12c17d0944093a76cfa06d81.tar.gz samba-0cea990d75d957fc12c17d0944093a76cfa06d81.tar.bz2 samba-0cea990d75d957fc12c17d0944093a76cfa06d81.zip |
s3: put netsamlogon_cache.tdb into cache_dir instead of lock_dir
Michael
-rw-r--r-- | source3/libsmb/samlogon_cache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/libsmb/samlogon_cache.c b/source3/libsmb/samlogon_cache.c index 7af93cf2e0..c96f5dad83 100644 --- a/source3/libsmb/samlogon_cache.c +++ b/source3/libsmb/samlogon_cache.c @@ -35,7 +35,7 @@ static TDB_CONTEXT *netsamlogon_tdb = NULL; bool netsamlogon_cache_init(void) { if (!netsamlogon_tdb) { - netsamlogon_tdb = tdb_open_log(lock_path(NETSAMLOGON_TDB), 0, + netsamlogon_tdb = tdb_open_log(cache_path(NETSAMLOGON_TDB), 0, TDB_DEFAULT, O_RDWR | O_CREAT, 0600); } |