diff options
author | Michael Adam <obnox@samba.org> | 2009-01-16 00:40:48 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2009-01-16 01:02:23 +0100 |
commit | 99ef38c84fa902494b7b6fe8e75dd78303a5f7a9 (patch) | |
tree | 11f6c8688434546f0fe09a144c521c70bdac3334 /source3/nmbd | |
parent | edbc7efa35c39819e1ca31e1b45ce47f3e6924b5 (diff) | |
download | samba-99ef38c84fa902494b7b6fe8e75dd78303a5f7a9.tar.gz |
s3:put the browse list into cache_dir, not lock_dir.
Michael
Diffstat (limited to 'source3/nmbd')
-rw-r--r-- | source3/nmbd/nmbd_serverlistdb.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/source3/nmbd/nmbd_serverlistdb.c b/source3/nmbd/nmbd_serverlistdb.c index 349c3f4df3d..28c164fc145 100644 --- a/source3/nmbd/nmbd_serverlistdb.c +++ b/source3/nmbd/nmbd_serverlistdb.c @@ -326,14 +326,7 @@ void write_browse_list(time_t t, bool force_write) updatecount++; - fname = talloc_strdup(ctx, lp_lockdir()); - if (!fname) { - return; - } - trim_char(fname,'\0' ,'/'); - fname = talloc_asprintf_append(fname, - "/%s", - SERVER_LIST); + fname = cache_path(SERVER_LIST); if (!fname) { return; } |