diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2005-08-30 00:41:02 +0000 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2005-08-30 00:41:02 +0000 |
commit | 409cc1555e44c119124b5fd66893b0f7029cd37b (patch) | |
tree | b551f51ea53368bf6758602f77edd0810e7082df /source/lib/samba3/tdbsam.c | |
parent | f6fe43acc027a9ff3345d88462fc0eda5aa0125d (diff) | |
download | samba-409cc1555e44c119124b5fd66893b0f7029cd37b.tar.gz samba-409cc1555e44c119124b5fd66893b0f7029cd37b.tar.xz samba-409cc1555e44c119124b5fd66893b0f7029cd37b.zip |
r9770: Couple other bugfixes
Update TODO-list
Diffstat (limited to 'source/lib/samba3/tdbsam.c')
-rw-r--r-- | source/lib/samba3/tdbsam.c | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/source/lib/samba3/tdbsam.c b/source/lib/samba3/tdbsam.c index fc293d5df9e..5397abca496 100644 --- a/source/lib/samba3/tdbsam.c +++ b/source/lib/samba3/tdbsam.c @@ -84,14 +84,6 @@ static BOOL init_sam_from_buffer_v0(TDB_CONTEXT *tdb, struct samba3_samaccount * return False; } - if (lm_pw_len != 16) { - return False; - } - - if (nt_pw_len != 16) { - return False; - } - return True; } @@ -150,14 +142,6 @@ static BOOL init_sam_from_buffer_v1(TDB_CONTEXT *tdb, struct samba3_samaccount * return False; } - if (lm_pw_len != 16) { - return False; - } - - if (nt_pw_len != 16) { - return False; - } - return True; } @@ -216,14 +200,6 @@ static BOOL init_sam_from_buffer_v2(TDB_CONTEXT *tdb, struct samba3_samaccount * return False; } - if (lm_pw_len != 16) { - return False; - } - - if (nt_pw_len != 16) { - return False; - } - return True; } |