summaryrefslogtreecommitdiff
path: root/source4/smb_server/smb/trans2.c
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2006-03-06 15:31:01 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:52:18 -0500
commitb58f6e543d5c8a057831612a1a40e0b7d3919bce (patch)
tree2b776ff6f30392c12088ce2e7dacc69d4391d728 /source4/smb_server/smb/trans2.c
parentc14e67526059f8df87b7b69ad8070573345591b1 (diff)
downloadsamba-b58f6e543d5c8a057831612a1a40e0b7d3919bce.tar.gz
samba-b58f6e543d5c8a057831612a1a40e0b7d3919bce.tar.bz2
samba-b58f6e543d5c8a057831612a1a40e0b7d3919bce.zip
r13865: prefix functions with smbsrv_
metze (This used to be commit 2af96632757ee4bb0261b1871100008b48c5fd4d)
Diffstat (limited to 'source4/smb_server/smb/trans2.c')
-rw-r--r--source4/smb_server/smb/trans2.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/source4/smb_server/smb/trans2.c b/source4/smb_server/smb/trans2.c
index 9d537b5bbe..992581b8d3 100644
--- a/source4/smb_server/smb/trans2.c
+++ b/source4/smb_server/smb/trans2.c
@@ -1753,7 +1753,7 @@ failed:
/*
Reply to an SMBtrans2
*/
-void reply_trans2(struct smbsrv_request *req)
+void smbsrv_reply_trans2(struct smbsrv_request *req)
{
reply_trans_generic(req, SMBtrans2);
}
@@ -1761,7 +1761,7 @@ void reply_trans2(struct smbsrv_request *req)
/*
Reply to an SMBtrans
*/
-void reply_trans(struct smbsrv_request *req)
+void smbsrv_reply_trans(struct smbsrv_request *req)
{
reply_trans_generic(req, SMBtrans);
}
@@ -1769,7 +1769,7 @@ void reply_trans(struct smbsrv_request *req)
/*
Reply to an SMBtranss request
*/
-void reply_transs(struct smbsrv_request *req)
+void smbsrv_reply_transs(struct smbsrv_request *req)
{
reply_transs_generic(req, SMBtrans);
}
@@ -1777,8 +1777,7 @@ void reply_transs(struct smbsrv_request *req)
/*
Reply to an SMBtranss2 request
*/
-void reply_transs2(struct smbsrv_request *req)
+void smbsrv_reply_transs2(struct smbsrv_request *req)
{
reply_transs_generic(req, SMBtrans2);
}
-