Update account expiration to use new samdb_result_account_expires() function.
authorAndrew Kroeger <andrew@sprocks.gotdns.com>
Thu, 6 Mar 2008 12:07:28 +0000 (06:07 -0600)
committerAndrew Kroeger <andrew@sprocks.gotdns.com>
Fri, 7 Mar 2008 11:59:56 +0000 (05:59 -0600)
(This used to be commit 2b6b4e5a1611744eea5dd9ec17c416916d7edab4)

source4/auth/sam.c
source4/kdc/hdb-ldb.c

index 9a8045f62d62071aac9a5bfb05112ea261fbe845..882196343c7cff3a4c6ccdca2cb160ac4b833460 100644 (file)
@@ -157,7 +157,7 @@ _PUBLIC_ NTSTATUS authsam_account_ok(TALLOC_CTX *mem_ctx,
 
        acct_flags = samdb_result_acct_flags(sam_ctx, mem_ctx, msg, domain_dn);
        
-       acct_expiry = samdb_result_nttime(msg, "accountExpires", 0);
+       acct_expiry = samdb_result_account_expires(msg, 0);
 
        /* Check for when we must change this password, taking the
         * userAccountControl flags into account */
@@ -351,7 +351,7 @@ _PUBLIC_ NTSTATUS authsam_make_server_info(TALLOC_CTX *mem_ctx, struct ldb_conte
 
        server_info->last_logon = samdb_result_nttime(msg, "lastLogon", 0);
        server_info->last_logoff = samdb_result_nttime(msg, "lastLogoff", 0);
-       server_info->acct_expiry = samdb_result_nttime(msg, "accountExpires", 0);
+       server_info->acct_expiry = samdb_result_account_expires(msg, 0);
        server_info->last_password_change = samdb_result_nttime(msg, "pwdLastSet", 0);
 
        ncname = samdb_result_dn(sam_ctx, mem_ctx, msg_domain_ref, "nCName", NULL);
index 9a17e581e3f650f1646b5ac05e33e1eea9cdf0b8..bc5a45ae2bb2392fbe50bd65440279ec459947b0 100644 (file)
@@ -510,9 +510,8 @@ static krb5_error_code LDB_message2entry(krb5_context context, HDB *db,
 
        entry_ex->entry.valid_start = NULL;
 
-       acct_expiry = samdb_result_nttime(msg, "accountExpires", (NTTIME)-1);
-       if ((acct_expiry == (NTTIME)-1) ||
-           (acct_expiry == 0x7FFFFFFFFFFFFFFFULL)) {
+       acct_expiry = samdb_result_account_expires(msg, 0);
+       if (acct_expiry == 0x7FFFFFFFFFFFFFFFULL) {
                entry_ex->entry.valid_end = NULL;
        } else {
                entry_ex->entry.valid_end = malloc(sizeof(*entry_ex->entry.valid_end));