summaryrefslogtreecommitdiff
path: root/source3/include/proto.h
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2008-06-25 00:21:37 +0200
committerGünther Deschner <gd@samba.org>2008-06-25 09:51:31 +0200
commit92bd665aea68ee8d198f72c95af5da487efcfc36 (patch)
tree62db2b32e94a20743b91fa0fa87872b46bf8fd15 /source3/include/proto.h
parentda70f8ab1ec840bbdcc73c22c4d4c54705c83980 (diff)
downloadsamba-92bd665aea68ee8d198f72c95af5da487efcfc36.tar.gz
samba-92bd665aea68ee8d198f72c95af5da487efcfc36.tar.bz2
samba-92bd665aea68ee8d198f72c95af5da487efcfc36.zip
rpc_client: let cli_get_session_key() return talloced session key.
Thanks, Volker, for pointing this out. Guenther (This used to be commit b47899195e0c190445953243fe80da4e92994dd1)
Diffstat (limited to 'source3/include/proto.h')
-rw-r--r--source3/include/proto.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h
index 70ab390dc1..1aca7f436d 100644
--- a/source3/include/proto.h
+++ b/source3/include/proto.h
@@ -7130,7 +7130,8 @@ struct rpc_pipe_client *cli_rpc_pipe_open_krb5(struct cli_state *cli,
const char *username,
const char *password,
NTSTATUS *perr);
-NTSTATUS cli_get_session_key(struct rpc_pipe_client *cli,
+NTSTATUS cli_get_session_key(TALLOC_CTX *mem_ctx,
+ struct rpc_pipe_client *cli,
DATA_BLOB *session_key);