]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
nsswitch:: s/the the\b/the/ in comments
authorDouglas Bagnall <douglas.bagnall@catalyst.net.nz>
Fri, 13 Sep 2024 02:23:47 +0000 (14:23 +1200)
committerVolker Lendecke <vl@samba.org>
Wed, 6 Nov 2024 10:57:35 +0000 (10:57 +0000)
Signed-off-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
Reviewed-by: Volker Lendecke <vl@samba.org>
nsswitch/libwbclient/wbc_sid.c
nsswitch/pam_winbind.c

index 747addb1f5b23f1f2dcb7b01139c6d030b08799d..72173cfbb644c68e91aaf16cb6ab28f3deb8da65 100644 (file)
@@ -150,7 +150,7 @@ wbcErr wbcStringToSid(const char *str,
        sid->id_auth[1] = (x & 0x00ff00000000ULL) >> 32;
        sid->id_auth[0] = (x & 0xff0000000000ULL) >> 40;
 
-       /* now read the the subauthorities */
+       /* now read the subauthorities */
        p = q +1;
        sid->num_auths = 0;
        while (sid->num_auths < WBC_MAXSUBAUTHS) {
index 968a72bccc0a5560d3be879b3b4a88dd03bde33a..67f351c056fb8edf38dfb8f5cc80013157254b3a 100644 (file)
@@ -2531,7 +2531,7 @@ static char* winbind_upn_to_username(struct pwb_context *ctx,
                return NULL;
        }
 
-       /* Convert the the SID back to the sAMAccountName */
+       /* Convert the SID back to the sAMAccountName */
 
        wbc_status = wbcCtxLookupSid(ctx->wbc_ctx, &sid, &domain, &name, &type);
        if (!WBC_ERROR_IS_OK(wbc_status)) {