diff options
author | Andrew Bartlett <abartlet@samba.org> | 2001-11-11 11:00:38 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2001-11-11 11:00:38 +0000 |
commit | e903a34b2ecf6bca515dbe57274f4186d7f3955e (patch) | |
tree | 1838d157f7b3a326d657302dede31d1d582e3723 /source3/libsmb | |
parent | e1cd19516093882dde0eefeeb629c53d48e64822 (diff) | |
download | samba-e903a34b2ecf6bca515dbe57274f4186d7f3955e.tar.gz samba-e903a34b2ecf6bca515dbe57274f4186d7f3955e.tar.bz2 samba-e903a34b2ecf6bca515dbe57274f4186d7f3955e.zip |
Minor updates. A small dose of const.
(This used to be commit 80667cb0dd1a2cdef17711c8580af9f524971cea)
Diffstat (limited to 'source3/libsmb')
-rw-r--r-- | source3/libsmb/smbencrypt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/libsmb/smbencrypt.c b/source3/libsmb/smbencrypt.c index c1c4750e05..2e27455362 100644 --- a/source3/libsmb/smbencrypt.c +++ b/source3/libsmb/smbencrypt.c @@ -167,7 +167,7 @@ void NTLMSSPOWFencrypt(const uchar passwd[8], const uchar *ntlmchalresp, uchar p /* Does the NT MD4 hash then des encryption. */ -void SMBNTencrypt(uchar *passwd, uchar *c8, uchar *p24) +void SMBNTencrypt(const uchar *passwd, uchar *c8, uchar *p24) { uchar p21[21]; |