]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
s4:wrepl_server: Fix code spelling
authorAndreas Schneider <asn@samba.org>
Thu, 3 Aug 2023 13:48:16 +0000 (15:48 +0200)
committerAndrew Bartlett <abartlet@samba.org>
Mon, 14 Aug 2023 21:45:30 +0000 (21:45 +0000)
Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
source4/wrepl_server/wrepl_server.c
source4/wrepl_server/wrepl_server.h

index aa408edc79900bf6b31b14396515c009a1c1f2a1..59c45f605f58ed83afecebaf8f60db0ca5e58bb3 100644 (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;
index 499fb013724166f0c1ffd7632c3f0aaff40a14c1..c2e4ab403d2419042a739f2dbfd3481dd1078263 100644 (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;