diff options
author | Andreas Schneider <asn@samba.org> | 2011-05-30 10:40:37 +0200 |
---|---|---|
committer | Andreas Schneider <asn@samba.org> | 2011-06-01 12:02:15 +0200 |
commit | 44fb1140bb92259f10852e24bde82a13f926ca15 (patch) | |
tree | 4198134420709cb6b879f204044665f78a3054c9 | |
parent | e340cd83f87a9ea02cacd9af520d154652c5afb1 (diff) | |
download | samba-44fb1140bb92259f10852e24bde82a13f926ca15.tar.gz |
s3-rpc_server: Added syntax id to pipe_rpc_fns struct.
-rw-r--r-- | source3/include/ntdomain.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/include/ntdomain.h b/source3/include/ntdomain.h index ed97182b258..fc30dd984ae 100644 --- a/source3/include/ntdomain.h +++ b/source3/include/ntdomain.h @@ -86,7 +86,8 @@ typedef struct pipe_rpc_fns { const struct api_struct *cmds; int n_cmds; - uint32 context_id; + uint32_t context_id; + struct ndr_syntax_id syntax; } PIPE_RPC_FNS; |