svn commit: samba r13866 - in branches/SAMBA_4_0/source/smb_server/smb: .

metze at samba.org metze at samba.org
Mon Mar 6 15:33:25 GMT 2006


Author: metze
Date: 2006-03-06 15:33:25 +0000 (Mon, 06 Mar 2006)
New Revision: 13866

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=13866

Log:
prefix more functions with smbsrv_

metze
Modified:
   branches/SAMBA_4_0/source/smb_server/smb/reply.c
   branches/SAMBA_4_0/source/smb_server/smb/service.c
   branches/SAMBA_4_0/source/smb_server/smb/sesssetup.c


Changeset:
Modified: branches/SAMBA_4_0/source/smb_server/smb/reply.c
===================================================================
--- branches/SAMBA_4_0/source/smb_server/smb/reply.c	2006-03-06 15:31:01 UTC (rev 13865)
+++ branches/SAMBA_4_0/source/smb_server/smb/reply.c	2006-03-06 15:33:25 UTC (rev 13866)
@@ -102,7 +102,7 @@
 	}
 
 	/* 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 @@
 	}
 
 	/* 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 @@
 	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 @@
 	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 @@
 	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)) {

Modified: branches/SAMBA_4_0/source/smb_server/smb/service.c
===================================================================
--- branches/SAMBA_4_0/source/smb_server/smb/service.c	2006-03-06 15:31:01 UTC (rev 13865)
+++ branches/SAMBA_4_0/source/smb_server/smb/service.c	2006-03-06 15:33:25 UTC (rev 13866)
@@ -152,7 +152,7 @@
 /*
   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;
 

Modified: branches/SAMBA_4_0/source/smb_server/smb/sesssetup.c
===================================================================
--- branches/SAMBA_4_0/source/smb_server/smb/sesssetup.c	2006-03-06 15:31:01 UTC (rev 13865)
+++ branches/SAMBA_4_0/source/smb_server/smb/sesssetup.c	2006-03-06 15:33:25 UTC (rev 13866)
@@ -357,8 +357,8 @@
 /*
   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 @@
 
 	return status;
 }
-
-



More information about the samba-cvs mailing list