diff options
Diffstat (limited to 'source3')
-rw-r--r-- | source3/passdb/pdb_ldap.c | 4 | ||||
-rw-r--r-- | source3/rpc_client/init_lsa.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/source3/passdb/pdb_ldap.c b/source3/passdb/pdb_ldap.c index 63262406e5..e5080bac14 100644 --- a/source3/passdb/pdb_ldap.c +++ b/source3/passdb/pdb_ldap.c @@ -4666,7 +4666,9 @@ static bool ldapgroup2displayentry(struct ldap_search_state *state, DEBUG(0,("unkown group type: %d\n", group_type)); return False; } - + + result->acct_flags = 0; + return True; } diff --git a/source3/rpc_client/init_lsa.c b/source3/rpc_client/init_lsa.c index 2637158fd0..9777f27629 100644 --- a/source3/rpc_client/init_lsa.c +++ b/source3/rpc_client/init_lsa.c @@ -26,6 +26,8 @@ void init_lsa_String(struct lsa_String *name, const char *s) { name->string = s; + name->size = 2 * strlen_m(s); + name->length = name->size; } /******************************************************************* |