Fix spelling s/retrive/retrieve/
authorMathieu Parent <math.parent@gmail.com>
Fri, 4 May 2018 20:23:39 +0000 (22:23 +0200)
committerAndrew Bartlett <abartlet@samba.org>
Sat, 12 May 2018 00:09:27 +0000 (02:09 +0200)
Signed-off-by: Mathieu Parent <math.parent@gmail.com>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Garming Sam <garming@catalyst.net.nz>
python/samba/samba3/__init__.py
source3/passdb/pdb_smbpasswd.c
source3/utils/ntlm_auth.c

index b145e432c97eb68f580cfb54ce8e838bbb9233de..053c113715d1859ec98dc3781c3bd79ec8dd91b7 100644 (file)
@@ -163,7 +163,7 @@ class IdmapDatabase(DbDatabase):
     def get_sid(self, xid, id_type):
         """Retrive SID associated with a particular id and type.
 
-        :param xid: UID or GID to retrive SID for.
+        :param xid: UID or GID to retrieve SID for.
         :param id_type: Type of id specified - 'UID' or 'GID'
         """
         data = self.db.get("%s %s\0" % (id_type, str(xid)))
index 9c381471ddae384328541af58f401568f0a2f9e6..4d210fd78c9762276ff27df34a0360098b4a5d26 100644 (file)
@@ -63,7 +63,7 @@ struct smbpasswd_privates
        unsigned char smbpwd[16];
        unsigned char smbntpwd[16];
 
-       /* retrive-once info */
+       /* retrieve-once info */
        const char *smbpasswd_file;
 };
 
index d3146ccb989181506c647c9d5a908e9e076a9c9b..2409ef8d13076ac5d2a21828b9081b8df4395144 100644 (file)
@@ -1601,7 +1601,7 @@ static void manage_gensec_request(enum stdio_helper_mode stdio_helper_mode,
 
                nt_status = gensec_session_info(state->gensec_state, mem_ctx, &session_info);
                if (!NT_STATUS_IS_OK(nt_status)) {
-                       reply_code = "BH Failed to retrive session info";
+                       reply_code = "BH Failed to retrieve session info";
                        reply_arg = nt_errstr(nt_status);
                        DEBUG(1, ("GENSEC failed to retrieve the session info: %s\n", nt_errstr(nt_status)));
                } else {