diff options
author | Volker Lendecke <vl@samba.org> | 2009-05-07 22:46:27 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-06-14 11:25:44 +0200 |
commit | baa6084378e530b013ac002b91b56cc1e79c5e38 (patch) | |
tree | bf1568249a27b3dc8af7e1e5ef1e2675c966a5a3 /source3/winbindd/winbindd.h | |
parent | 478503694a860018740a93296e66d5cb0caa53c9 (diff) | |
download | samba-baa6084378e530b013ac002b91b56cc1e79c5e38.tar.gz samba-baa6084378e530b013ac002b91b56cc1e79c5e38.tar.xz samba-baa6084378e530b013ac002b91b56cc1e79c5e38.zip |
Make winbindd_cli_state->request a pointer instead of a struct member
In itself, this is pretty pointless. But in the next steps I'll convert the
winbind internal communication to wb_reqtrans which allocates the request
properly. This minimizes the later diff.
Volker
Diffstat (limited to 'source3/winbindd/winbindd.h')
-rw-r--r-- | source3/winbindd/winbindd.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/winbindd/winbindd.h b/source3/winbindd/winbindd.h index f3733dc131d..31d73a5cc89 100644 --- a/source3/winbindd/winbindd.h +++ b/source3/winbindd/winbindd.h @@ -69,7 +69,8 @@ struct winbindd_cli_state { bool privileged; /* Is the client 'privileged' */ TALLOC_CTX *mem_ctx; /* memory per request */ - struct winbindd_request request; /* Request from client */ + struct winbindd_request *request; /* Request from client */ + struct winbindd_request _request; struct winbindd_response response; /* Respose to client */ bool getpwent_initialized; /* Has getpwent_state been * initialized? */ |