diff options
author | Andrew Tridgell <tridge@samba.org> | 2000-06-03 07:20:57 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2000-06-03 07:20:57 +0000 |
commit | bca956d078a235396cb936a47f377c5ef2a6eaeb (patch) | |
tree | 6f9bf92aa9a938d97796b3c484ef35adf34ba68e | |
parent | 2a24646c50b5cd295fc7dc72135fd9a843ee9b3b (diff) | |
download | samba-bca956d078a235396cb936a47f377c5ef2a6eaeb.tar.gz samba-bca956d078a235396cb936a47f377c5ef2a6eaeb.tar.bz2 samba-bca956d078a235396cb936a47f377c5ef2a6eaeb.zip |
new protos
(This used to be commit e00c162f72303d94854c6033c1f91a1d7b9e0a27)
-rw-r--r-- | source3/include/proto.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index a221cca22c..d4c5f442d4 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -1567,6 +1567,9 @@ BOOL secrets_store(char *key, void *data, size_t size); BOOL secrets_delete(char *key); BOOL secrets_store_domain_sid(char *domain, DOM_SID *sid); BOOL secrets_fetch_domain_sid(char *domain, DOM_SID *sid); +BOOL secrets_fetch_trust_account_password(char *domain, uint8 ret_pwd[16], + time_t *pass_last_set_time); +BOOL secrets_store_trust_account_password(char *domain, uint8 new_pwd[16]); /*The following definitions come from passdb/smbpass.c */ @@ -1585,8 +1588,6 @@ BOOL local_password_change(char *user_name, int local_flags, BOOL pw_file_lock(int fd, int type, int secs, int *plock_depth); BOOL pw_file_unlock(int fd, int *plock_depth); BOOL trust_password_delete(char *domain); -BOOL get_trust_account_password(char *domain, unsigned char *ret_pwd, time_t *pass_last_set_time); -BOOL set_trust_account_password(char *domain, unsigned char *md4_new_pwd); /*The following definitions come from printing/load.c */ |