mirror of
https://github.com/samba-team/samba.git
synced 2025-01-24 02:04:21 +03:00
r13866: prefix more functions with smbsrv_
metze (This used to be commit bb083f17c961964dd99185ae4194596ccaafd4a8)
This commit is contained in:
parent
b58f6e543d
commit
354a61fc91
@ -102,7 +102,7 @@ void smbsrv_reply_tcon(struct smbsrv_request *req)
|
||||
}
|
||||
|
||||
/* call backend */
|
||||
status = tcon_backend(req, &con);
|
||||
status = smbsrv_tcon_backend(req, &con);
|
||||
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
req_reply_error(req, status);
|
||||
@ -155,7 +155,7 @@ void smbsrv_reply_tcon_and_X(struct smbsrv_request *req)
|
||||
}
|
||||
|
||||
/* call backend */
|
||||
status = tcon_backend(req, &con);
|
||||
status = smbsrv_tcon_backend(req, &con);
|
||||
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
req_reply_error(req, status);
|
||||
@ -1989,7 +1989,7 @@ static void reply_sesssetup_old(struct smbsrv_request *req)
|
||||
p += req_pull_string(req, &sess.old.in.lanman, p, -1, STR_TERMINATE);
|
||||
|
||||
/* call the generic handler */
|
||||
status = sesssetup_backend(req, &sess);
|
||||
status = smbsrv_sesssetup_backend(req, &sess);
|
||||
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
req_reply_error(req, status);
|
||||
@ -2055,7 +2055,7 @@ static void reply_sesssetup_nt1(struct smbsrv_request *req)
|
||||
p += req_pull_string(req, &sess.nt1.in.lanman, p, -1, STR_TERMINATE);
|
||||
|
||||
/* call the generic handler */
|
||||
status = sesssetup_backend(req, &sess);
|
||||
status = smbsrv_sesssetup_backend(req, &sess);
|
||||
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
req_reply_error(req, status);
|
||||
@ -2111,7 +2111,7 @@ static void reply_sesssetup_spnego(struct smbsrv_request *req)
|
||||
p += req_pull_string(req, &sess.spnego.in.workgroup, p, -1, STR_TERMINATE);
|
||||
|
||||
/* call the generic handler */
|
||||
status = sesssetup_backend(req, &sess);
|
||||
status = smbsrv_sesssetup_backend(req, &sess);
|
||||
|
||||
if (!NT_STATUS_IS_OK(status) &&
|
||||
!NT_STATUS_EQUAL(status, NT_STATUS_MORE_PROCESSING_REQUIRED)) {
|
||||
|
@ -152,7 +152,7 @@ static NTSTATUS make_connection(struct smbsrv_request *req,
|
||||
/*
|
||||
backend for tree connect call
|
||||
*/
|
||||
NTSTATUS tcon_backend(struct smbsrv_request *req, union smb_tcon *con)
|
||||
NTSTATUS smbsrv_tcon_backend(struct smbsrv_request *req, union smb_tcon *con)
|
||||
{
|
||||
NTSTATUS status;
|
||||
|
||||
|
@ -357,8 +357,8 @@ failed:
|
||||
/*
|
||||
backend for sessionsetup call - this takes all 3 variants of the call
|
||||
*/
|
||||
NTSTATUS sesssetup_backend(struct smbsrv_request *req,
|
||||
union smb_sesssetup *sess)
|
||||
NTSTATUS smbsrv_sesssetup_backend(struct smbsrv_request *req,
|
||||
union smb_sesssetup *sess)
|
||||
{
|
||||
NTSTATUS status = NT_STATUS_INVALID_LEVEL;
|
||||
|
||||
@ -380,5 +380,3 @@ NTSTATUS sesssetup_backend(struct smbsrv_request *req,
|
||||
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user