New Bash ready for upload

2003-10-20 Thread Ronald Landheer-Cieslak
I've applied cgf's patch to Bash and test-driven it on my machine. The new
version is available here:

e148fb06b6c856a591a985d86361da15 *bash-2.05b-16-src.tar.bz2
http://rlc.unsane.co.uk/release/bash/bash-2.05b-16-src.tar.bz2
837f987c5c5cbceb773bf14a32060bac *bash-2.05b-16.tar.bz2
http://rlc.unsane.co.uk/release/bash/bash-2.05b-16.tar.bz2


-- 
firewall needs cooling


Re: New Bash ready for upload

2003-10-20 Thread Corinna Vinschen
On Mon, Oct 20, 2003 at 03:22:36PM +0200, Ronald Landheer-Cieslak wrote:
 I've applied cgf's patch to Bash and test-driven it on my machine. The new
 version is available here:
 
 e148fb06b6c856a591a985d86361da15 *bash-2.05b-16-src.tar.bz2
 http://rlc.unsane.co.uk/release/bash/bash-2.05b-16-src.tar.bz2
 837f987c5c5cbceb773bf14a32060bac *bash-2.05b-16.tar.bz2
 http://rlc.unsane.co.uk/release/bash/bash-2.05b-16.tar.bz2

How to handle -13 and -15?  Which one gets prev, which one to remove?

Corinna

-- 
Corinna Vinschen  Please, send mails regarding Cygwin to
Cygwin Developermailto:[EMAIL PROTECTED]
Red Hat, Inc.


Re: UPDATED: mutt-1.4.1-1

2003-10-20 Thread Pierre A. Humblet
The latest mutt (has it been announced?) does not seems to
contain the patch discussed in 

http://www.cygwin.com/ml/cygwin/2003-02/msg01148.html
http://cygwin.com/ml/cygwin/2002-11/msg00628.html

and repeated below. Consequently it doesn't work on Win9x/ME.

Pierre

--- dotlock.c.orig  2003-10-20 22:11:36.0 -0400
+++ dotlock.c   2003-10-20 22:28:04.0 -0400
@@ -623,10 +623,14 @@ dotlock_lock (const char *realpath)
   
   while (hard_count++  HARDMAXATTEMPTS)
   {
-
+int res;
+  
 BEGIN_PRIVILEGED ();
-link (nfslockfile, lockfile);
+res = link (nfslockfile, lockfile);
 END_PRIVILEGED ();
+
+if (!res)
+  break;
 
 if (stat (nfslockfile, sb) != 0)
 {