From 678bd1b2eb1cfd9b9cd3e26cab5cd0a9529908ce Mon Sep 17 00:00:00 2001 From: jtc Date: Tue, 30 Apr 1996 00:07:00 +0000 Subject: [PATCH] Use XS, not XC, flags when setting tty flags. From Brook Milligan . --- usr.sbin/lpr/lpd/printjob.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.sbin/lpr/lpd/printjob.c b/usr.sbin/lpr/lpd/printjob.c index f72c9d4fdcda..247d4d457c08 100644 --- a/usr.sbin/lpr/lpd/printjob.c +++ b/usr.sbin/lpr/lpd/printjob.c @@ -1,4 +1,4 @@ -/* $NetBSD: printjob.c,v 1.8 1995/11/15 22:49:56 pk Exp $ */ +/* $NetBSD: printjob.c,v 1.9 1996/04/30 00:07:00 jtc Exp $ */ /* * Copyright (c) 1983, 1993 * The Regents of the University of California. All rights reserved. @@ -1377,7 +1377,7 @@ setty() i.set = 1; } if (XS) { - sttysetlflags(&i.t, XC); + sttysetlflags(&i.t, XS); i.set = 1; } }