summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Olexa <darkside@gentoo.org>2009-08-20 03:54:32 +0000
committerJeremy Olexa <darkside@gentoo.org>2009-08-20 03:54:32 +0000
commitb9bad0961d7d74f9e3f6fc4af65d983e17487eb2 (patch)
tree3f06498fe99221ad1c15b5351b640fcbb802a85c /app-arch/zoo
parentremove unused patches (diff)
downloadgentoo-2-b9bad0961d7d74f9e3f6fc4af65d983e17487eb2.tar.gz
gentoo-2-b9bad0961d7d74f9e3f6fc4af65d983e17487eb2.tar.bz2
gentoo-2-b9bad0961d7d74f9e3f6fc4af65d983e17487eb2.zip
remove unused patches
(Portage version: 2.1.6.13/cvs/Linux x86_64)
Diffstat (limited to 'app-arch/zoo')
-rw-r--r--app-arch/zoo/ChangeLog8
-rw-r--r--app-arch/zoo/files/zoo-security-fix.patch19
2 files changed, 6 insertions, 21 deletions
diff --git a/app-arch/zoo/ChangeLog b/app-arch/zoo/ChangeLog
index 6e68146e43ca..3ecca5f7e26d 100644
--- a/app-arch/zoo/ChangeLog
+++ b/app-arch/zoo/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-arch/zoo
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-arch/zoo/ChangeLog,v 1.44 2008/07/13 06:33:53 josejx Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-arch/zoo/ChangeLog,v 1.45 2009/08/20 03:54:32 darkside Exp $
+
+ 20 Aug 2009; Jeremy Olexa <darkside@gentoo.org>
+ -files/zoo-security-fix.patch:
+ remove unused patches
13 Jul 2008; Joseph Jezak <josejx@gentoo.org> zoo-2.10-r4.ebuild:
Marked ppc stable for bug #231077.
diff --git a/app-arch/zoo/files/zoo-security-fix.patch b/app-arch/zoo/files/zoo-security-fix.patch
deleted file mode 100644
index 2cfd2c24b645..000000000000
--- a/app-arch/zoo/files/zoo-security-fix.patch
+++ /dev/null
@@ -1,19 +0,0 @@
---- misc.c.old 2006-02-23 15:10:26.000000000 -0500
-+++ misc.c 2006-02-23 15:10:29.000000000 -0500
-@@ -135,11 +135,15 @@
- char *fullpath (direntry)
- struct direntry *direntry;
- {
-- static char result[PATHSIZE];
-+ static char result[PATHSIZE+PATHSIZE+12]; // Room for enough space
- combine (result,
- direntry->dirlen != 0 ? direntry->dirname : "",
- (direntry->namlen != 0) ? direntry->lfname : direntry->fname
- );
-+ if (strlen (result) >= PATHSIZE) {
-+ prterror ('f', "Combined dirname and filename too long\n");
-+ }
-+
- return (result);
- }
-