X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/356a170694d9182f1a350933a76e75bc75f8056d..c725e24c2ffb016d5a86654f8612cf8c6e33e346:/unix/uxprint.c diff --git a/unix/uxprint.c b/unix/uxprint.c index 387ea28d..c835b6f4 100644 --- a/unix/uxprint.c +++ b/unix/uxprint.c @@ -14,10 +14,10 @@ printer_job *printer_start_job(char *printer) { printer_job *ret = smalloc(sizeof(printer_job)); /* - * On Unix, we treat cfg.printer as the name of a command to - * pipe to - typically lpr, of course. + * On Unix, we treat the printer string as the name of a + * command to pipe to - typically lpr, of course. */ - ret->fp = popen(cfg.printer, "w"); + ret->fp = popen(printer, "w"); if (!ret->fp) { sfree(ret); ret = NULL;