diff options
author | Günther Deschner <gd@samba.org> | 2010-02-26 02:50:28 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2010-02-26 11:07:57 +0100 |
commit | 274baba4ab191e4b357ef5babc01a1c5501afebf (patch) | |
tree | fc15a9560027c6305c46a12fbebff948f6df8d49 /testprogs/win32/spoolss | |
parent | d671b80cf5ebd4a4a2d832d90aeef27cacfb521a (diff) | |
download | samba-274baba4ab191e4b357ef5babc01a1c5501afebf.tar.gz samba-274baba4ab191e4b357ef5babc01a1c5501afebf.tar.bz2 samba-274baba4ab191e4b357ef5babc01a1c5501afebf.zip |
testprogs: print the directory paths as well in spoolss test.
Guenther
Diffstat (limited to 'testprogs/win32/spoolss')
-rw-r--r-- | testprogs/win32/spoolss/spoolss.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/testprogs/win32/spoolss/spoolss.c b/testprogs/win32/spoolss/spoolss.c index c9a7bc0105..38eb7ed7d7 100644 --- a/testprogs/win32/spoolss/spoolss.c +++ b/testprogs/win32/spoolss/spoolss.c @@ -1073,6 +1073,10 @@ static BOOL test_GetPrintProcessorDirectory(struct torture_context *tctx, } } + if (tctx->print) { + printf("\tPrint Processor Directory\t= %s\n\n", (LPSTR)buffer); + } + free(buffer); buffer = NULL; } @@ -1120,6 +1124,10 @@ static BOOL test_GetPrinterDriverDirectory(struct torture_context *tctx, } } + if (tctx->print) { + printf("\tPrinter Driver Directory\t= %s\n\n", (LPSTR)buffer); + } + free(buffer); buffer = NULL; } |