diff options
author | Tim Potter <tpot@samba.org> | 2003-10-28 10:59:19 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2003-10-28 10:59:19 +0000 |
commit | 4cac564d71f7387497fa23f2b6bcc0461a1978bc (patch) | |
tree | d61955ba96d2aa88bef95421e1a54158317fa26a | |
parent | ab2bd17d62aaac626783b2758e2658479b3b74a8 (diff) | |
download | samba-4cac564d71f7387497fa23f2b6bcc0461a1978bc.tar.gz samba-4cac564d71f7387497fa23f2b6bcc0461a1978bc.tar.bz2 samba-4cac564d71f7387497fa23f2b6bcc0461a1978bc.zip |
A fix for making transfer syntax a pointer instead of an array of pointers
in struct p_ctx_list.
(This used to be commit e99e28aa36f31e862e89cef246b50a34b5115af9)
-rw-r--r-- | source4/libcli/raw/rawdcerpc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/libcli/raw/rawdcerpc.c b/source4/libcli/raw/rawdcerpc.c index 11bd0057ce..1cc034de78 100644 --- a/source4/libcli/raw/rawdcerpc.c +++ b/source4/libcli/raw/rawdcerpc.c @@ -81,8 +81,8 @@ DATA_BLOB dcerpc_raw_bind_setup(struct dcerpc_bind *parms) offset = put_uuid(data, offset, &ctx->as->if_uuid); SIVAL(data, offset, ctx->as->if_version); offset += 4; for (j = 0; j < ctx->num_ts; j++) { - offset = put_uuid(data, offset, &ctx->ts[i]->if_uuid); - SIVAL(data, offset, ctx->ts[i]->if_version); + offset = put_uuid(data, offset, &ctx->ts[i].if_uuid); + SIVAL(data, offset, ctx->ts[i].if_version); offset += 4; } } |