summaryrefslogtreecommitdiff
path: root/source4/smbd/process_standard.c
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2004-06-28 07:41:15 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:56:48 -0500
commitd4ae6ae74d712b74800e360590052d318d2fd101 (patch)
tree501cd87429114ba59612ffa9633117a5f40fc83c /source4/smbd/process_standard.c
parentf18fa1dfdbd1ca2d721d146522c7efdfae638e7f (diff)
downloadsamba-d4ae6ae74d712b74800e360590052d318d2fd101.tar.gz
samba-d4ae6ae74d712b74800e360590052d318d2fd101.tar.bz2
samba-d4ae6ae74d712b74800e360590052d318d2fd101.zip
r1277: rename struct server_context to smbsrv_ontext
because I need server_context fot the generic server infastructure metze (This used to be commit 0712f9f30797e65362c99423c0cf158a2f539000)
Diffstat (limited to 'source4/smbd/process_standard.c')
-rw-r--r--source4/smbd/process_standard.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/smbd/process_standard.c b/source4/smbd/process_standard.c
index bf21e21157..b3a69c7295 100644
--- a/source4/smbd/process_standard.c
+++ b/source4/smbd/process_standard.c
@@ -115,7 +115,7 @@ static void accept_rpc_connection(struct event_context *ev, struct fd_event *fde
}
/* called when a SMB connection goes down */
-static void terminate_connection(struct server_context *server, const char *reason)
+static void terminate_connection(struct smbsrv_context *server, const char *reason)
{
server_terminate(server);
/* terminate this process */
@@ -132,10 +132,10 @@ static void terminate_rpc_connection(void *r, const char *reason)
static int get_id(struct request_context *req)
{
- return (int)req->smb->pid;
+ return (int)req->smb_ctx->pid;
}
-static void standard_exit_server(struct server_context *smb, const char *reason)
+static void standard_exit_server(struct smbsrv_context *smb, const char *reason)
{
DEBUG(1,("standard_exit_server: reason[%s]\n",reason));
}