summaryrefslogtreecommitdiff
path: root/source3/rpc_parse/parse_rpc.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>1998-11-13 03:37:01 +0000
committerAndrew Tridgell <tridge@samba.org>1998-11-13 03:37:01 +0000
commit2db96e3047400be594e7c5ebf7d6fcedb77f6907 (patch)
tree4a3c3d2e2062b9aaf86d7b6ef9b827b60a6189ac /source3/rpc_parse/parse_rpc.c
parent2164685b9f959814af2067aa0dcac2d1b2ac0bc5 (diff)
downloadsamba-2db96e3047400be594e7c5ebf7d6fcedb77f6907.tar.gz
samba-2db96e3047400be594e7c5ebf7d6fcedb77f6907.tar.bz2
samba-2db96e3047400be594e7c5ebf7d6fcedb77f6907.zip
fixes for OSF1 compilation
(This used to be commit 5be3c37f50eac35cad3eadf0d24e7a4ee04c075e)
Diffstat (limited to 'source3/rpc_parse/parse_rpc.c')
-rw-r--r--source3/rpc_parse/parse_rpc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/rpc_parse/parse_rpc.c b/source3/rpc_parse/parse_rpc.c
index 6b5da0ef56..3bf017d25e 100644
--- a/source3/rpc_parse/parse_rpc.c
+++ b/source3/rpc_parse/parse_rpc.c
@@ -702,8 +702,8 @@ void make_rpc_auth_ntlmssp_resp(RPC_AUTH_NTLMSSP_RESP *rsp,
rsp->neg_flags = neg_flags;
- memcpy(&rsp->lm_resp, lm_resp, 24);
- memcpy(&rsp->nt_resp, nt_resp, 24);
+ memcpy(rsp->lm_resp, lm_resp, 24);
+ memcpy(rsp->nt_resp, nt_resp, 24);
if (IS_BITS_SET_ALL(neg_flags, NTLMSSP_NEGOTIATE_UNICODE))
{