diff options
author | Luke Leighton <lkcl@samba.org> | 1998-06-04 17:48:21 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1998-06-04 17:48:21 +0000 |
commit | 1b85da9a1cd91c4d658ea50f1ed6545e85a0199a (patch) | |
tree | ffde3a3c6931163d6e43d30e7aa43fe273b12434 | |
parent | 59e2992139774762456826f6667e73f2b39828d8 (diff) | |
download | samba-1b85da9a1cd91c4d658ea50f1ed6545e85a0199a.tar.gz samba-1b85da9a1cd91c4d658ea50f1ed6545e85a0199a.tar.bz2 samba-1b85da9a1cd91c4d658ea50f1ed6545e85a0199a.zip |
had what would be a compile error if it wasn't #if 0'd out in passdb_ops
(This used to be commit 2cb94eec59bdcc1272063637bbc8b7a5449fdc62)
-rw-r--r-- | source3/include/smb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/include/smb.h b/source3/include/smb.h index 214b36e704..dfbe213e57 100644 --- a/source3/include/smb.h +++ b/source3/include/smb.h @@ -693,7 +693,7 @@ struct passdb_ops { * password checking functions */ struct smb_passwd *(*smb_password_chal )(char *username, char lm_pass[24], char nt_pass[24], char chal[8]); - struct smb_passwd *(*smb_password_check )(char *username, char lm_hash[16], char nt_hash[16], + struct smb_passwd *(*smb_password_check )(char *username, char lm_hash[16], char nt_hash[16]); struct passwd *(*unix_password_check)(char *username, char *pass, int pass_len); #endif }; |