diff options
author | Jeremy Allison <jra@samba.org> | 2000-11-27 23:59:42 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2000-11-27 23:59:42 +0000 |
commit | 0f1c800f8542297b9c1a6a4dff20263e3b6d9d40 (patch) | |
tree | 426b829c4680972d57e606f81f2af0f84a1d86ca /source3/include/proto.h | |
parent | 120f3afa899eac9a03643ce3e81264d245e09d3d (diff) | |
download | samba-0f1c800f8542297b9c1a6a4dff20263e3b6d9d40.tar.gz samba-0f1c800f8542297b9c1a6a4dff20263e3b6d9d40.tar.bz2 samba-0f1c800f8542297b9c1a6a4dff20263e3b6d9d40.zip |
passdb/secrets.c passdb/smbpassfile.c smbd/server.c : Actually *use* the code
written to transition from an old DOMAIN.MACHINE.MAC file to secrets.tdb.
printing/nt_printing.c: Fix case insensitive name lookups for driver files.
John - this should fix the Win9x/WinME problem correctly.
Jeremy.
(This used to be commit 8f3332a9acf413ac5d12053ca5c52733a4e946cc)
Diffstat (limited to 'source3/include/proto.h')
-rw-r--r-- | source3/include/proto.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index ae44bdd185..bdb681cea2 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -1732,13 +1732,15 @@ 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); +char *trust_keystr(char *domain); 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]); +BOOL trust_password_delete(char *domain); /*The following definitions come from passdb/smbpassfile.c */ -BOOL trust_password_delete(char *domain); +BOOL migrate_from_old_password_file(char *domain); /*The following definitions come from printing/load.c */ |