diff options
author | Andrew Tridgell <tridge@samba.org> | 2005-05-27 00:25:25 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:17:03 -0500 |
commit | b7158885afc40bcac857e6fc2cfd97e6c8f4c4f8 (patch) | |
tree | be4f01ff05d7cd0379755caacd07c447210f200f | |
parent | b8c4565845059fe70b5c5cdbda85c5af4f6c7b95 (diff) | |
download | samba-b7158885afc40bcac857e6fc2cfd97e6c8f4c4f8.tar.gz samba-b7158885afc40bcac857e6fc2cfd97e6c8f4c4f8.tar.bz2 samba-b7158885afc40bcac857e6fc2cfd97e6c8f4c4f8.zip |
r6997: added a private pointer to the task structure. This is needed by the session data
in the web server
(This used to be commit ac438f0a9cc38ebec95133250c04c4935032b24d)
-rw-r--r-- | source4/smbd/service_task.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source4/smbd/service_task.h b/source4/smbd/service_task.h index e8d90d7631..84bb512455 100644 --- a/source4/smbd/service_task.h +++ b/source4/smbd/service_task.h @@ -26,5 +26,6 @@ struct task_server { const struct model_ops *model_ops; struct messaging_context *msg_ctx; uint32_t server_id; + void *private; }; |