diff options
author | David O'Neill <dmo@samba.org> | 2001-01-22 15:30:38 +0000 |
---|---|---|
committer | David O'Neill <dmo@samba.org> | 2001-01-22 15:30:38 +0000 |
commit | 3d153ef9fba79e9843d886fc4b9629503fed4e29 (patch) | |
tree | b8334ad1f7bf23c0f2934a0d1945f254234258d5 /source3/param/loadparm.c | |
parent | c4e0cb72bc654cbdae6e9c3bbcb40683bc0cadca (diff) | |
download | samba-3d153ef9fba79e9843d886fc4b9629503fed4e29.tar.gz samba-3d153ef9fba79e9843d886fc4b9629503fed4e29.tar.bz2 samba-3d153ef9fba79e9843d886fc4b9629503fed4e29.zip |
Small bugfix from Kenichi Okuyama <okuyamak@dd.iij4u.or.jp>:
-FN_GLOBAL_INTEGER(lp_min_wins_ttl, &Globals.max_wins_ttl)
+FN_GLOBAL_INTEGER(lp_min_wins_ttl, &Globals.min_wins_ttl)
(This used to be commit 0233ba442643ad13b3707b63046691287fd2b449)
Diffstat (limited to 'source3/param/loadparm.c')
-rw-r--r-- | source3/param/loadparm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index 7750cb7ac7..b1f63c0cf8 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -1504,7 +1504,7 @@ FN_GLOBAL_BOOL(lp_kernel_oplocks, &Globals.bKernelOplocks) FN_GLOBAL_INTEGER(lp_os_level, &Globals.os_level) FN_GLOBAL_INTEGER(lp_max_ttl, &Globals.max_ttl) FN_GLOBAL_INTEGER(lp_max_wins_ttl, &Globals.max_wins_ttl) -FN_GLOBAL_INTEGER(lp_min_wins_ttl, &Globals.max_wins_ttl) +FN_GLOBAL_INTEGER(lp_min_wins_ttl, &Globals.min_wins_ttl) FN_GLOBAL_INTEGER(lp_max_log_size, &Globals.max_log_size) FN_GLOBAL_INTEGER(lp_max_open_files, &Globals.max_open_files) FN_GLOBAL_INTEGER(lp_maxxmit, &Globals.max_xmit) |