diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2011-02-28 22:04:29 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2011-02-28 23:30:06 +0100 |
commit | 59a077d8f5b4ec78e90d6c4dabbc65375598c431 (patch) | |
tree | abbb6cdfa35b2a53f2202fa8c9a8856dbef67876 /source3/passdb | |
parent | f7b4209f999d9c5310865381b1598668f9bcb98f (diff) | |
download | samba-59a077d8f5b4ec78e90d6c4dabbc65375598c431.tar.gz samba-59a077d8f5b4ec78e90d6c4dabbc65375598c431.tar.bz2 samba-59a077d8f5b4ec78e90d6c4dabbc65375598c431.zip |
Fix some types
Autobuild-User: Jelmer Vernooij <jelmer@samba.org>
Autobuild-Date: Mon Feb 28 23:30:06 CET 2011 on sn-devel-104
Diffstat (limited to 'source3/passdb')
-rw-r--r-- | source3/passdb/pdb_ldap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/passdb/pdb_ldap.c b/source3/passdb/pdb_ldap.c index 5b34f6e026..7eb2fef49a 100644 --- a/source3/passdb/pdb_ldap.c +++ b/source3/passdb/pdb_ldap.c @@ -4814,7 +4814,7 @@ static bool ldapgroup2displayentry(struct ldap_search_state *state, break; default: - DEBUG(0,("unkown group type: %d\n", group_type)); + DEBUG(0,("unknown group type: %d\n", group_type)); return False; } @@ -6625,7 +6625,7 @@ NTSTATUS pdb_init_ldapsam(struct pdb_methods **pdb_method, const char *location) "info, nor add one to the domain\n")); DEBUGADD(2, ("pdb_init_ldapsam: Continuing on regardless, " "will be unable to allocate new users/groups, " - "and will risk BDCs having inconsistant SIDs\n")); + "and will risk BDCs having inconsistent SIDs\n")); sid_copy(&ldap_state->domain_sid, get_global_sam_sid()); return NT_STATUS_OK; } |