summaryrefslogtreecommitdiff
path: root/source3/librpc
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2014-09-22 23:19:46 -0700
committerAndrew Bartlett <abartlet@samba.org>2014-09-27 01:35:36 +0200
commitf8643b9f5fcb4854e2e6ba17941df24862f0504b (patch)
tree30cd69ab728b325d8af35afbe00fa155f0571ef2 /source3/librpc
parenta3ecad4237e1c4094263f31204bb8ae06669c951 (diff)
downloadsamba-f8643b9f5fcb4854e2e6ba17941df24862f0504b.tar.gz
librpc: Remove user/domain from struct pipe_auth_data
This does require that we always fill in the gensec pointer, but the simplification is worth the extra allocations. Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'source3/librpc')
-rw-r--r--source3/librpc/rpc/dcerpc.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/source3/librpc/rpc/dcerpc.h b/source3/librpc/rpc/dcerpc.h
index 9d0f86156e7..f75dd8417b5 100644
--- a/source3/librpc/rpc/dcerpc.h
+++ b/source3/librpc/rpc/dcerpc.h
@@ -45,9 +45,7 @@ struct pipe_auth_data {
void *auth_ctx;
- /* Only the client code uses these 3 for now */
- char *domain;
- char *user_name;
+ /* Only the client code uses this for now */
DATA_BLOB transport_session_key;
};