From: Mathieu Parent Date: Fri, 4 May 2018 20:23:39 +0000 (+0200) Subject: Fix spelling s/retrive/retrieve/ X-Git-Tag: ldb-1.4.0~320 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=44ae08858e6e859f968456576a2b066f05382fcb;p=thirdparty%2Fsamba.git Fix spelling s/retrive/retrieve/ Signed-off-by: Mathieu Parent Reviewed-by: Andrew Bartlett Reviewed-by: Garming Sam --- diff --git a/python/samba/samba3/__init__.py b/python/samba/samba3/__init__.py index b145e432c97..053c113715d 100644 --- a/python/samba/samba3/__init__.py +++ b/python/samba/samba3/__init__.py @@ -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))) diff --git a/source3/passdb/pdb_smbpasswd.c b/source3/passdb/pdb_smbpasswd.c index 9c381471dda..4d210fd78c9 100644 --- a/source3/passdb/pdb_smbpasswd.c +++ b/source3/passdb/pdb_smbpasswd.c @@ -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; }; diff --git a/source3/utils/ntlm_auth.c b/source3/utils/ntlm_auth.c index d3146ccb989..2409ef8d130 100644 --- a/source3/utils/ntlm_auth.c +++ b/source3/utils/ntlm_auth.c @@ -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 {