diff options
author | Günther Deschner <gd@samba.org> | 2008-11-24 18:49:37 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-11-28 13:55:38 +0100 |
commit | 4d7485df96b45054aa8f4fcac38b25847f34ca87 (patch) | |
tree | d52269c7e1d43ec379bef3ac3d4d025b00f3e449 /source3/include | |
parent | 408cd5b09d5079d73f0ea8819a4505a04e40f8ea (diff) | |
download | samba-4d7485df96b45054aa8f4fcac38b25847f34ca87.tar.gz samba-4d7485df96b45054aa8f4fcac38b25847f34ca87.tar.bz2 samba-4d7485df96b45054aa8f4fcac38b25847f34ca87.zip |
s3-samr: fix init_samr_user_info{23,24} callers.
Guenther
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 59df098d0d..0087b5bb4d 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -5733,11 +5733,10 @@ void init_samr_user_info23(struct samr_UserInfo23 *r, uint8_t nt_password_set, uint8_t lm_password_set, uint8_t password_expired, - uint8_t data[516], - uint8_t pw_len); + struct samr_CryptPassword *pwd_buf); void init_samr_user_info24(struct samr_UserInfo24 *r, - uint8_t data[516], - uint8_t pw_len); + struct samr_CryptPassword *pwd_buf, + uint8_t password_expired); void init_samr_CryptPasswordEx(const char *pwd, DATA_BLOB *session_key, struct samr_CryptPasswordEx *pwd_buf); |