X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/putty/blobdiff_plain/e85da6a57672fc612e8e4a01f41a42593e3c2230..169c04c90148d37b31ce77208123319ce6f21d1e:/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;