diff options
-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 c9a7bc01056..38eb7ed7d74 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; } |