diff options
author | Stefan Metzmacher <metze@samba.org> | 2004-11-22 10:59:46 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:06:04 -0500 |
commit | ca751e2638ca0fbb03b54e1aaa4ed1316e903947 (patch) | |
tree | 9df5339e937f9edb98fbc8d3fa78a2a3f3eebaeb /source4/libcli | |
parent | 21eecc628222338089ab06559176006643dad61c (diff) | |
download | samba-ca751e2638ca0fbb03b54e1aaa4ed1316e903947.tar.gz samba-ca751e2638ca0fbb03b54e1aaa4ed1316e903947.tar.bz2 samba-ca751e2638ca0fbb03b54e1aaa4ed1316e903947.zip |
r3906: fix compiler warnings
metze
(This used to be commit df924e18220aedbfbfae569e1fb37da652914c0b)
Diffstat (limited to 'source4/libcli')
-rw-r--r-- | source4/libcli/auth/credentials.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/libcli/auth/credentials.c b/source4/libcli/auth/credentials.c index ec41ebf4bd..a61660d776 100644 --- a/source4/libcli/auth/credentials.c +++ b/source4/libcli/auth/credentials.c @@ -172,7 +172,7 @@ void creds_des_decrypt(struct creds_CredentialState *creds, struct samr_Password /* ARCFOUR encrypt/decrypt a password buffer using the session key */ -void creds_arcfour_crypt(struct creds_CredentialState *creds, char *data, size_t len) +void creds_arcfour_crypt(struct creds_CredentialState *creds, uint8_t *data, size_t len) { DATA_BLOB session_key = data_blob(creds->session_key, 16); |