1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-04 17:47:26 +03:00

Make encode_wkssvc_join_password_buffer() non-static.

Guenther
(This used to be commit 258ef17a266548bc02bed1870fd4ef5a272300b3)
This commit is contained in:
Günther Deschner 2007-11-30 14:34:33 +01:00 committed by Volker Lendecke
parent 5886f7c9f6
commit c224118ffe

View File

@ -701,10 +701,10 @@ char *decrypt_trustdom_secret(const char *pass, DATA_BLOB *data_in)
* buffer), calling MD5Update() first with session_key and then with confounder
* (vice versa in samr) - Guenther */
static void encode_wkssvc_join_password_buffer(TALLOC_CTX *mem_ctx,
const char *pwd,
DATA_BLOB *session_key,
struct wkssvc_PasswordBuffer *pwd_buf)
void encode_wkssvc_join_password_buffer(TALLOC_CTX *mem_ctx,
const char *pwd,
DATA_BLOB *session_key,
struct wkssvc_PasswordBuffer *pwd_buf)
{
uint8_t buffer[516];
struct MD5Context ctx;