diff options
author | wiz <wiz@pkgsrc.org> | 2001-06-14 10:54:05 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2001-06-14 10:54:05 +0000 |
commit | b8234822cc63a13b6af6721e4881e06702efc8c1 (patch) | |
tree | 1ada0f0c9cfa967ef2ce69832e6dbb423b53b2da /archivers/bzip2 | |
parent | 8a92fffae20317dab131598fd469aeee9e71464d (diff) | |
download | pkgsrc-b8234822cc63a13b6af6721e4881e06702efc8c1.tar.gz |
Oops, forgot to remove this file on update.
Diffstat (limited to 'archivers/bzip2')
-rw-r--r-- | archivers/bzip2/patches/patch-ab | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/archivers/bzip2/patches/patch-ab b/archivers/bzip2/patches/patch-ab deleted file mode 100644 index f5714678dcc..00000000000 --- a/archivers/bzip2/patches/patch-ab +++ /dev/null @@ -1,50 +0,0 @@ -$NetBSD: patch-ab,v 1.1 1999/04/08 18:40:39 tron Exp $ - ---- bzip2.c 1998/09/14 02:37:24 1.2 -+++ bzip2.c 1999/04/08 18:34:27 1.4 -@@ -767,14 +767,16 @@ - /*-- - if in doubt, return True - --*/ --Bool notAStandardFile ( Char* name ) -+Bool notAStandardFile ( Char* name , IntNative allowSymbolicLinks ) - { - IntNative i; - struct MY_STAT statBuf; - -- i = MY_LSTAT ( name, &statBuf ); -+ i = allowSymbolicLinks ? MY_STAT ( name, &statBuf ) : -+ MY_LSTAT ( name, &statBuf ); - if (i != 0) return True; - if (MY_S_IFREG(statBuf.st_mode)) return False; -+ - return True; - } - -@@ -878,7 +880,7 @@ - progName, inName ); - return; - } -- if ( srcMode != SM_I2O && notAStandardFile ( inName )) { -+ if ( srcMode != SM_I2O && notAStandardFile ( inName, False )) { - fprintf ( stderr, "%s: Input file %s is not a normal file, skipping.\n", - progName, inName ); - return; -@@ -1003,7 +1005,7 @@ - progName, inName ); - return; - } -- if ( srcMode != SM_I2O && notAStandardFile ( inName )) { -+ if ( srcMode != SM_I2O && notAStandardFile ( inName, srcMode == SM_F2O )) { - fprintf ( stderr, "%s: Input file %s is not a normal file, skipping.\n", - progName, inName ); - return; -@@ -1133,7 +1135,7 @@ - progName, inName ); - return; - } -- if ( srcMode != SM_I2O && notAStandardFile ( inName )) { -+ if ( srcMode != SM_I2O && notAStandardFile ( inName, True )) { - fprintf ( stderr, "%s: Input file %s is not a normal file, skipping.\n", - progName, inName ); - return; |