summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarolin Seeger <kseeger@samba.org>2008-07-14 16:40:36 +0200
committerKarolin Seeger <kseeger@samba.org>2008-07-14 16:40:36 +0200
commit37c64130701ab13b6f34998ac17fec2d128c2e08 (patch)
tree7ab671e689b5efcf6dc579cf24900aa10e873c45
parent4436272dd4d6cdd223b1dc3d217a97cbe3bc887b (diff)
downloadsamba-37c64130701ab13b6f34998ac17fec2d128c2e08.tar.gz
Fix typo.
retieve -> retrieve Karolin
-rw-r--r--source/lib/ldb/common/ldb_parse.c2
-rw-r--r--source/lib/replace/snprintf.c2
-rw-r--r--source/passdb/pdb_ldap.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/source/lib/ldb/common/ldb_parse.c b/source/lib/ldb/common/ldb_parse.c
index 782e8a88634..bcc92c5b5c3 100644
--- a/source/lib/ldb/common/ldb_parse.c
+++ b/source/lib/ldb/common/ldb_parse.c
@@ -322,7 +322,7 @@ static enum ldb_parse_op ldb_parse_filtertype(void *mem_ctx, char **type, char *
while (isspace((unsigned char)*p)) p++;
- /* retieve value */
+ /* retrieve value */
t = p;
while (*p && ((*p != ')') || ((*p == ')') && (*(p - 1) == '\\')))) p++;
diff --git a/source/lib/replace/snprintf.c b/source/lib/replace/snprintf.c
index a174dcffed7..c54d721ce5e 100644
--- a/source/lib/replace/snprintf.c
+++ b/source/lib/replace/snprintf.c
@@ -526,7 +526,7 @@ static int dopr(char *buffer, size_t maxlen, const char *format, va_list args_in
}
}
- /* retieve the format arguments */
+ /* retrieve the format arguments */
for (pnum = 0; pnum < max_pos; pnum++) {
int i;
diff --git a/source/passdb/pdb_ldap.c b/source/passdb/pdb_ldap.c
index 5ddb485bb50..ca2ad18546f 100644
--- a/source/passdb/pdb_ldap.c
+++ b/source/passdb/pdb_ldap.c
@@ -5696,7 +5696,7 @@ static NTSTATUS ldapsam_set_primary_group(struct pdb_methods *my_methods,
DEBUG(0,("ldapsam_set_primary_group: Attempt to set primary group for user [%s]\n", pdb_get_username(sampass)));
if (!sid_to_gid(pdb_get_group_sid(sampass), &gid)) {
- DEBUG(0,("ldapsam_set_primary_group: failed to retieve gid from user's group SID!\n"));
+ DEBUG(0,("ldapsam_set_primary_group: failed to retrieve gid from user's group SID!\n"));
return NT_STATUS_UNSUCCESSFUL;
}
gidstr = talloc_asprintf(mem_ctx, "%d", gid);