Subject: Re: issue with pax creating a directory
To: None <tech-pkg@netbsd.org>
From: Georg Schwarz <georg.schwarz@freenet.de>
List: tech-pkg
Date: 12/06/2005 17:53:52
--ELM1133888032-12491-0_
Content-Transfer-Encoding: 7bit
Content-Type: text/plain; charset=US-ASCII

attached please find a proposed patch to correct the issue with pax
on IRIX 5.3 reported yesterday. Feedback would be very much appreciated.
Who is the best person to address this to?

-- 
Georg Schwarz    http://home.pages.de/~schwarz/
 georg.schwarz@freenet.de  +49 178 8545053

--ELM1133888032-12491-0_
Content-Transfer-Encoding: 7bit
Content-Type: text/plain
Content-Disposition: attachment; filename=ar_subs.c.diff
Content-Description: 

--- ar_subs.c.orig	2005-12-06 13:13:01.000000000 +0100
+++ ar_subs.c	2005-12-06 13:13:54.000000000 +0100
@@ -177,6 +177,7 @@
 	case EISDIR:
 		return 0;
 	case EEXIST:
+	case EACCES:
 		error = errno;
 		if (stat(fname, &sb) != -1 && S_ISDIR(sb.st_mode))
 			return 0;

--ELM1133888032-12491-0_--