1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

Fix spelling s/retrive/retrieve/

Signed-off-by: Mathieu Parent <math.parent@gmail.com>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Garming Sam <garming@catalyst.net.nz>
This commit is contained in:
Mathieu Parent 2018-05-04 22:23:39 +02:00 committed by Andrew Bartlett
parent 25ac1f192c
commit 44ae08858e
3 changed files with 3 additions and 3 deletions

View 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)))

View 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;
};

View 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 {