head 1.2; access; symbols pkgsrc-2013Q2:1.2.0.32 pkgsrc-2013Q2-base:1.2 pkgsrc-2012Q4:1.2.0.30 pkgsrc-2012Q4-base:1.2 pkgsrc-2011Q4:1.2.0.28 pkgsrc-2011Q4-base:1.2 pkgsrc-2011Q2:1.2.0.26 pkgsrc-2011Q2-base:1.2 pkgsrc-2009Q4:1.2.0.24 pkgsrc-2009Q4-base:1.2 pkgsrc-2008Q4:1.2.0.22 pkgsrc-2008Q4-base:1.2 pkgsrc-2008Q3:1.2.0.20 pkgsrc-2008Q3-base:1.2 cube-native-xorg:1.2.0.18 cube-native-xorg-base:1.2 pkgsrc-2008Q2:1.2.0.16 pkgsrc-2008Q2-base:1.2 pkgsrc-2008Q1:1.2.0.14 pkgsrc-2008Q1-base:1.2 pkgsrc-2007Q4:1.2.0.12 pkgsrc-2007Q4-base:1.2 pkgsrc-2007Q3:1.2.0.10 pkgsrc-2007Q3-base:1.2 pkgsrc-2007Q2:1.2.0.8 pkgsrc-2007Q2-base:1.2 pkgsrc-2007Q1:1.2.0.6 pkgsrc-2007Q1-base:1.2 pkgsrc-2006Q4:1.2.0.4 pkgsrc-2006Q4-base:1.2 pkgsrc-2006Q3:1.2.0.2 pkgsrc-2006Q3-base:1.2 pkgsrc-2006Q2:1.1.0.14 pkgsrc-2006Q2-base:1.1 pkgsrc-2006Q1:1.1.0.12 pkgsrc-2006Q1-base:1.1 pkgsrc-2005Q4:1.1.0.10 pkgsrc-2005Q4-base:1.1 pkgsrc-2005Q3:1.1.0.8 pkgsrc-2005Q3-base:1.1 pkgsrc-2005Q2:1.1.0.6 pkgsrc-2005Q2-base:1.1 pkgsrc-2005Q1:1.1.0.4 pkgsrc-2005Q1-base:1.1 pkgsrc-2004Q4:1.1.0.2 pkgsrc-2004Q4-base:1.1; locks; strict; comment @# @; 1.2 date 2006.09.19.19.42.49; author scw; state dead; branches; next 1.1; 1.1 date 2004.12.14.00.30.22; author kleink; state Exp; branches; next ; desc @@ 1.2 log @Update to version 1.2.2. Notable changes are: - Added "closeidle true/false" to the tty server's config file option list to tell the server that it should close the terminal device when there are no clients connected to the service. - If tits is invoked as "stdio2pty", it will allocate a pseudo-tty device and connect its stdin/stdout to the master side. It will fork(2) and exec(2) a program specified on the command line. This program will have *its* stdin/stdout connected to the slave side of the pty. One application for this is to execute pppd(8) from inetd.conf. - Add a "masterpty" client, which makes it possible associate a pseudo-tty device with a service. For example, you can now use tip(1) to connect to the slave pty, which will cause the master side to be connected to the server. - Adapt to NetBSD's more stringent parameter checks. - Gcc4 fixes, from Martin Husemann. Ok'd by agc@@ @ text @$NetBSD: patch-ab,v 1.1 2004/12/14 00:30:22 kleink Exp $ --- listener.c.orig 2003-04-13 11:14:36.000000000 +0200 +++ listener.c 2004-12-14 01:26:50.000000000 +0100 @@@@ -221,7 +221,8 @@@@ #ifdef LIBWRAP if (lc->lc_args.la_use_wrappers) { - request_init(&req, RQ_DAEMON, isdigit(lc->lc_args.la_port[0]) ? + request_init(&req, RQ_DAEMON, + isdigit((unsigned char)lc->lc_args.la_port[0]) ? pname : lc->lc_args.la_port, RQ_FILE, fd, NULL); fromhost(&req); if (hosts_access(&req) == 0) { @ 1.1 log @Add (unsigned char) casts to ctype function arguments. @ text @d1 1 a1 1 $NetBSD$ @