summaryrefslogtreecommitdiff
path: root/source4/ntvfs/print
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2004-09-25 12:48:09 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:59:14 -0500
commit18104c5679331c763f513f4c01b67b68f7a746fd (patch)
tree8f2d38fed6742d8a3fa1b768015b4e564ddb4c6f /source4/ntvfs/print
parent797d80879c89cedce5992ec4a67b61d2711421a7 (diff)
downloadsamba-18104c5679331c763f513f4c01b67b68f7a746fd.tar.gz
samba-18104c5679331c763f513f4c01b67b68f7a746fd.tar.bz2
samba-18104c5679331c763f513f4c01b67b68f7a746fd.zip
r2633: fixed some function types in the (unused) print backend
(This used to be commit e9803058ecc0b0f849aee48a077bff4e2c8feaa5)
Diffstat (limited to 'source4/ntvfs/print')
-rw-r--r--source4/ntvfs/print/vfs_print.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/ntvfs/print/vfs_print.c b/source4/ntvfs/print/vfs_print.c
index 7405697bb9..0e6824a14e 100644
--- a/source4/ntvfs/print/vfs_print.c
+++ b/source4/ntvfs/print/vfs_print.c
@@ -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 @@ static NTSTATUS print_connect(struct smbsrv_request *req, const char *sharename)
/*
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;
}