diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-09-28 19:07:43 -0700 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-09-28 19:25:51 -0700 |
commit | dacfe67a0e4c591710adbe6b2f53783ac76f4ba1 (patch) | |
tree | c2c0d1eb4a8ce108e6c59c820b7d05397d4ecc60 /source4 | |
parent | c83775d524612c24be97d3761a1cc29998040fa1 (diff) | |
download | samba-dacfe67a0e4c591710adbe6b2f53783ac76f4ba1.tar.gz samba-dacfe67a0e4c591710adbe6b2f53783ac76f4ba1.tar.bz2 samba-dacfe67a0e4c591710adbe6b2f53783ac76f4ba1.zip |
s4-sam: fixed termination of krbtgt_attrs (comma and NULL)
Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source4')
-rw-r--r-- | source4/auth/sam.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source4/auth/sam.c b/source4/auth/sam.c index 0f97a19596..ad7fe0a733 100644 --- a/source4/auth/sam.c +++ b/source4/auth/sam.c @@ -36,7 +36,7 @@ "userPrincipalName", \ "servicePrincipalName", \ "msDS-KeyVersionNumber", \ - "msDS-SecondaryKrbTgtNumber" \ + "msDS-SecondaryKrbTgtNumber", \ "msDS-SupportedEncryptionTypes", \ "supplementalCredentials", \ \ @@ -48,14 +48,14 @@ "objectSid", \ \ "pwdLastSet", \ - "accountExpires" + "accountExpires" const char *krbtgt_attrs[] = { - KRBTGT_ATTRS + KRBTGT_ATTRS, NULL }; const char *server_attrs[] = { - KRBTGT_ATTRS + KRBTGT_ATTRS, NULL }; const char *user_attrs[] = { |