diff options
Diffstat (limited to 'source4/include')
-rw-r--r-- | source4/include/context.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/include/context.h b/source4/include/context.h index 2df68b96b9..93f8552d86 100644 --- a/source4/include/context.h +++ b/source4/include/context.h @@ -79,7 +79,7 @@ struct smbsrv_tcon { /* the context for a single SMB request. This is passed to any request-context functions */ -struct request_context { +struct smbsrv_request { /* the server_context contains all context specific to this SMB socket */ struct smbsrv_context *smb_ctx; @@ -130,7 +130,7 @@ struct request_context { end not the backend. The backend must not change it. */ struct { - void (*send_fn)(struct request_context *); + void (*send_fn)(struct smbsrv_request *); void *private; NTSTATUS status; } async; @@ -313,7 +313,7 @@ struct pending_request { struct pending_request *next, *prev; /* the request itself - needs to be freed */ - struct request_context *request; + struct smbsrv_request *request; }; /* the timers context contains info on when we last did various |