1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-03 01:18:10 +03:00

s4:wrepl_server: Fix code spelling

Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
Andreas Schneider 2023-08-03 15:48:16 +02:00 committed by Andrew Bartlett
parent dbfc239f5b
commit 5f024d57b3
2 changed files with 3 additions and 3 deletions

View File

@ -111,7 +111,7 @@ static NTSTATUS wreplsrv_open_winsdb(struct wreplsrv_service *service,
service->config.scavenging_interval=lpcfg_parm_int(lp_ctx, NULL,"wreplsrv","scavenging_interval",
service->config.renew_interval/2);
/* the maximun interval to the next periodic processing event */
/* the maximum interval to the next periodic processing event */
service->config.periodic_interval = lpcfg_parm_int(lp_ctx, NULL,"wreplsrv","periodic_interval", 15);
return NT_STATUS_OK;

View File

@ -249,7 +249,7 @@ struct wreplsrv_service {
* even after 'tombstone_timeout' passes the current timestamp.
* this is the minimum uptime of the wrepl service, before
* we start delete tombstones. This is to prevent deletion of
* tombstones, without replacte them.
* tombstones, without replicating them.
*/
uint32_t tombstone_extra_timeout;
@ -266,7 +266,7 @@ struct wreplsrv_service {
/*
* the interval (in secs) to the next periodic processing
* (this is the maximun interval)
* (this is the maximum interval)
*/
uint32_t periodic_interval;
} config;