]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
Add get_logon_hours_from_pdb() (inspired by samba4).
authorGünther Deschner <gd@samba.org>
Tue, 12 Feb 2008 13:26:56 +0000 (14:26 +0100)
committerGünther Deschner <gd@samba.org>
Tue, 12 Feb 2008 13:52:25 +0000 (14:52 +0100)
Guenther

source/passdb/passdb.c

index b6a4126df1c88eb1c99068f600af0049a33a31c8..70b9dcd3b5d70403c4d76a5699965f1c9c5145c1 100644 (file)
@@ -1616,3 +1616,26 @@ bool get_trust_pw_hash(const char *domain, uint8 ret_pwd[16],
        return False;
 }
 
+struct samr_LogonHours get_logon_hours_from_pdb(TALLOC_CTX *mem_ctx,
+                                               struct samu *pw)
+{
+       struct samr_LogonHours hours;
+       const int units_per_week = 168;
+
+       ZERO_STRUCT(hours);
+       hours.bits = talloc_array(mem_ctx, uint8_t, units_per_week);
+       if (!hours.bits) {
+               return hours;
+       }
+
+       hours.units_per_week = units_per_week;
+       memset(hours.bits, 0xFF, units_per_week);
+
+       if (pdb_get_hours(pw)) {
+               memcpy(hours.bits, pdb_get_hours(pw),
+                      MIN(pdb_get_hours_len(pw), units_per_week));
+       }
+
+       return hours;
+}
+