diff options
author | Stefan Metzmacher <metze@samba.org> | 2006-06-26 18:31:39 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:09:32 -0500 |
commit | b22ddfd61d5a3e477ea4401b3800d44709d56f82 (patch) | |
tree | 1099a6630d7c827cd154681566cfb1d7656c6b22 /source4/ntptr/simple_ldb | |
parent | 9b161bcb71d9a2faf91d9e45e8ecc1ad95e1abd2 (diff) | |
download | samba-b22ddfd61d5a3e477ea4401b3800d44709d56f82.tar.gz samba-b22ddfd61d5a3e477ea4401b3800d44709d56f82.tar.bz2 samba-b22ddfd61d5a3e477ea4401b3800d44709d56f82.zip |
r16523: pass spoolss_XcvData calls to the ntptr backends...
I wrote this code last year and found it in a working tree...
metze
(This used to be commit 9a685c5beff6936d354d541e875899d33b735ba9)
Diffstat (limited to 'source4/ntptr/simple_ldb')
-rw-r--r-- | source4/ntptr/simple_ldb/ntptr_simple_ldb.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/source4/ntptr/simple_ldb/ntptr_simple_ldb.c b/source4/ntptr/simple_ldb/ntptr_simple_ldb.c index c9b6a700aa..136dae352a 100644 --- a/source4/ntptr/simple_ldb/ntptr_simple_ldb.c +++ b/source4/ntptr/simple_ldb/ntptr_simple_ldb.c @@ -761,7 +761,8 @@ static const struct ntptr_ops ntptr_simple_ldb_ops = { /* PrintServer functions */ .OpenPrintServer = sptr_OpenPrintServer, - +/* .XcvDataPrintServer = sptr_XcvDataPrintServer, +*/ /* PrintServer PrinterData functions */ /* .EnumPrintServerData = sptr_EnumPrintServerData, */ .GetPrintServerData = sptr_GetPrintServerData, @@ -783,10 +784,12 @@ static const struct ntptr_ops ntptr_simple_ldb_ops = { /* Port functions */ .EnumPorts = sptr_EnumPorts, /* .OpenPort = sptr_OpenPort, + .XcvDataPort = sptr_XcvDataPort, */ /* Monitor functions */ .EnumMonitors = sptr_EnumMonitors, /* .OpenMonitor = sptr_OpenMonitor, + .XcvDataMonitor = sptr_XcvDataMonitor, */ /* PrintProcessor functions */ /* .EnumPrintProcessors = sptr_EnumPrintProcessors, @@ -798,6 +801,7 @@ static const struct ntptr_ops ntptr_simple_ldb_ops = { .GetPrinter = sptr_GetPrinter, .SetPrinter = sptr_SetPrinter, .DeletePrinter = sptr_DeletePrinter, + .XcvDataPrinter = sptr_XcvDataPrinter, */ /* Printer Driver functions */ /* .GetPrinterDriver = sptr_GetPrinterDriver, |