1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

s4-torture: Fixed spoolss dsspooler printername test.

Signed-off-by: Günther Deschner <gd@samba.org>
This commit is contained in:
Andreas Schneider 2010-04-30 14:38:07 +02:00 committed by Günther Deschner
parent 6683b0d4b6
commit f5e41c5cde

View File

@ -4972,6 +4972,7 @@ static bool test_PrinterData_DsSpooler(struct torture_context *tctx,
union spoolss_SetPrinterInfo sinfo; union spoolss_SetPrinterInfo sinfo;
union spoolss_PrinterInfo info; union spoolss_PrinterInfo info;
struct dcerpc_binding_handle *b = p->binding_handle; struct dcerpc_binding_handle *b = p->binding_handle;
const char *pname;
ZERO_STRUCT(info_ctr); ZERO_STRUCT(info_ctr);
ZERO_STRUCT(devmode_ctr); ZERO_STRUCT(devmode_ctr);
@ -5061,7 +5062,14 @@ do {\
TEST_SZ("description", info.info2.comment); TEST_SZ("description", info.info2.comment);
TEST_SZ("driverName", info.info2.drivername); TEST_SZ("driverName", info.info2.drivername);
TEST_SZ("location", info.info2.location); TEST_SZ("location", info.info2.location);
TEST_SZ("printerName", info.info2.printername);
pname = strrchr(info.info2.printername, '\\');
if (pname == NULL) {
pname = info.info2.printername;
} else {
pname++;
}
TEST_SZ("printerName", pname);
/* TEST_SZ("printSeparatorFile", info.info2.sepfile); */ /* TEST_SZ("printSeparatorFile", info.info2.sepfile); */
/* TEST_SZ("printShareName", info.info2.sharename); */ /* TEST_SZ("printShareName", info.info2.sharename); */