From fetchpop Sun Nov  8 10:55:54 1998
Received: from mail.cs.interbusiness.it (HA-server-a.cs.interbusiness.it [151.99.250.31])
	by pisoft.it (8.8.5/8.8.5) with ESMTP id DAA01249
	for <andreoli@pisoft.it>; Sun, 8 Nov 1998 03:15:59 +0100
Received: from toms.net (toms.net [168.143.16.100])
	by mail.cs.interbusiness.it (8.8.8/8.8.8) with ESMTP id CAA09394
	for <andreoli@pisoft.it>; Sun, 8 Nov 1998 02:09:19 +0100 (MET)
Received: from localhost (tom@localhost)
	by toms.net (8.9.1a/8.8.8) with SMTP id UAA16136
	for <andreoli@pisoft.it>; Sat, 7 Nov 1998 20:14:55 -0500
Date: Sat, 7 Nov 1998 20:14:55 -0500 (EST)
From: Tom Oehser <tom@toms.net>
To: Michele Andreoli <andreoli@pisoft.it>
Subject: Re: ile problem
In-Reply-To: <Pine.LNX.3.96.981107163211.1335A-100000@sanvittore>
Message-ID: <Pine.LNX.3.95.981107201348.13410D-100000@toms.net>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-UIDL: ca535156090c8f99c4f7132e92bfd8d9
Status: RO
X-Status: 


> > Take a look at the patch in /usr/src of the latest tomsrtbt.
> Uhm, my modem is overloaded. Hardware problem (HD hard failure) caused
> loss of any data, also tomsrtbt (version ?). You can send me only this
> directory?

I'll append the ile patch at the end...

> Mah: spanish users need of specials characters (vowel accentued) and
> report additional problem with ile.

I'll fix it all eventually.

> In any case, in muLinux, ile is an option. You has downloaded my 2.3
> version ?

Downloaded, but not installed or played with.

-Tom

--- tty.c.orig	Fri Jul 31 17:21:48 1998
+++ tty.c	Fri Oct 23 10:45:24 1998
@@ -546,7 +546,7 @@
 #ifdef TIOCNOTTY
     int tty;
 
-    setpgrp(0, 0);
+    setsid();
     if ((tty = open("/dev/tty", O_RDWR) == -1) ||
 	    (ioctl(0, TIOCNOTTY, 0) == -1) ||
 	    (close(tty) == -1))
@@ -554,7 +554,7 @@
         perror("ile - TIOCNOTTY on /dev/tty");
     }
 #else
-        setpgrp();
+        setsid();
 #endif
 }
 



