svn commit: samba r2633 - in branches/SAMBA_4_0/source/ntvfs/print: .

tridge at samba.org tridge at samba.org
Sat Sep 25 12:48:09 GMT 2004


Author: tridge
Date: 2004-09-25 12:48:09 +0000 (Sat, 25 Sep 2004)
New Revision: 2633

WebSVN: http://websvn.samba.org/websvn/changeset.php?rep=samba&path=/branches/SAMBA_4_0/source/ntvfs/print&rev=2633&nolog=1

Log:
fixed some function types in the (unused) print backend


Modified:
   branches/SAMBA_4_0/source/ntvfs/print/vfs_print.c


Changeset:
Modified: branches/SAMBA_4_0/source/ntvfs/print/vfs_print.c
===================================================================
--- branches/SAMBA_4_0/source/ntvfs/print/vfs_print.c	2004-09-25 12:36:36 UTC (rev 2632)
+++ branches/SAMBA_4_0/source/ntvfs/print/vfs_print.c	2004-09-25 12:48:09 UTC (rev 2633)
@@ -29,7 +29,7 @@
   in. For printing shares this should check that the spool directory
   is available
 */
-static NTSTATUS print_connect(struct smbsrv_request *req, const char *sharename)
+static NTSTATUS print_connect(struct smbsrv_request *req, const char *sharename, int depth)
 {
 	return NT_STATUS_OK;
 }
@@ -37,7 +37,7 @@
 /*
   disconnect from a share
 */
-static NTSTATUS print_disconnect(struct smbsrv_tcon *tcon)
+static NTSTATUS print_disconnect(struct smbsrv_tcon *tcon, int depth)
 {
 	return NT_STATUS_OK;
 }



More information about the samba-cvs mailing list