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 | 0233ba442643ad13b3707b63046691287fd2b449 (patch) | |
tree | 28cf2ffb034babde13d334634e2a365467c2eff1 | |
parent | f07f4e9c7b9bb5230f10fffe50beab163b6f7790 (diff) | |
download | samba-0233ba442643ad13b3707b63046691287fd2b449.tar.gz samba-0233ba442643ad13b3707b63046691287fd2b449.tar.xz samba-0233ba442643ad13b3707b63046691287fd2b449.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)
-rw-r--r-- | source/param/loadparm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/param/loadparm.c b/source/param/loadparm.c index 7750cb7ac7a..b1f63c0cf8c 100644 --- a/source/param/loadparm.c +++ b/source/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) |