summaryrefslogtreecommitdiffstats
path: root/source4/winbind/wb_server.h
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2010-05-14 17:31:33 +1000
committerAndrew Bartlett <abartlet@samba.org>2010-05-14 23:25:45 +1000
commit8da50c8da1527bafbb0ff4e86cc12fb54dd2b4b7 (patch)
tree7bc1b0b58c2d82f2d82a859e4c2e2891aaa368f9 /source4/winbind/wb_server.h
parentad197f6f15054e398c0bf4f27388a86a384c09ba (diff)
downloadsamba-8da50c8da1527bafbb0ff4e86cc12fb54dd2b4b7.tar.gz
samba-8da50c8da1527bafbb0ff4e86cc12fb54dd2b4b7.tar.xz
samba-8da50c8da1527bafbb0ff4e86cc12fb54dd2b4b7.zip
s4:winbindd Rework some winbind structures to make s3compat easier
By making the winbindd_request and winbindd_response structures pointers, we can more easily integrate with the winbindd from source3/winbindd Andrew Bartlett
Diffstat (limited to 'source4/winbind/wb_server.h')
-rw-r--r--source4/winbind/wb_server.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/winbind/wb_server.h b/source4/winbind/wb_server.h
index 8b79bc7406e..d408fbb8e19 100644
--- a/source4/winbind/wb_server.h
+++ b/source4/winbind/wb_server.h
@@ -161,10 +161,10 @@ struct wbsrv_samba3_call {
void *private_data;
/* the request structure of the samba3 protocol */
- struct winbindd_request request;
+ struct winbindd_request *request;
/* the response structure of the samba3 protocol*/
- struct winbindd_response response;
+ struct winbindd_response *response;
DATA_BLOB in;
DATA_BLOB out;