diff options
author | Christian Birchinger <joker@gentoo.org> | 2006-12-17 15:55:29 +0000 |
---|---|---|
committer | Christian Birchinger <joker@gentoo.org> | 2006-12-17 15:55:29 +0000 |
commit | 4be5674e954fc0e6d161dc70b684927aa2a0a81b (patch) | |
tree | 32faba848ffbbd639ff363563f0cbea160c0c344 /app-admin/ccze/files | |
parent | Remove old version (diff) | |
download | gentoo-2-4be5674e954fc0e6d161dc70b684927aa2a0a81b.tar.gz gentoo-2-4be5674e954fc0e6d161dc70b684927aa2a0a81b.tar.bz2 gentoo-2-4be5674e954fc0e6d161dc70b684927aa2a0a81b.zip |
Added a patch for the missing optarg in recent glibcs
(Portage version: 2.1.1-r2)
Diffstat (limited to 'app-admin/ccze/files')
-rw-r--r-- | app-admin/ccze/files/ccze-segfault.patch | 30 | ||||
-rw-r--r-- | app-admin/ccze/files/digest-ccze-0.2.1-r2 | 3 |
2 files changed, 33 insertions, 0 deletions
diff --git a/app-admin/ccze/files/ccze-segfault.patch b/app-admin/ccze/files/ccze-segfault.patch new file mode 100644 index 000000000000..fa30d2f515c1 --- /dev/null +++ b/app-admin/ccze/files/ccze-segfault.patch @@ -0,0 +1,30 @@ +diff -ruN ccze-0.2.1.orig/src/ccze.c ccze-0.2.1/src/ccze.c +--- ccze-0.2.1.orig/src/ccze.c 2003-05-13 20:09:30.000000000 +0200 ++++ ccze-0.2.1/src/ccze.c 2006-12-12 20:36:09.000000000 +0100 +@@ -209,7 +209,7 @@ + } + break; + case 'a': +- plugin = strtok (optarg, "="); ++ plugin = strtok (arg, "="); + value = strtok (NULL, "\n"); + ccze_plugin_argv_set (plugin, value); + break; +@@ -249,7 +249,7 @@ + ccze_config.remfac = 1; + break; + case 'm': +- subopts = optarg; ++ subopts = arg; + while (*subopts != '\0') + { + switch (getsubopt (&subopts, m_subopts, &value)) +@@ -273,7 +273,7 @@ + } + break; + case 'o': +- subopts = optarg; ++ subopts = arg; + while (*subopts != '\0') + { + switch (getsubopt (&subopts, o_subopts, &value)) diff --git a/app-admin/ccze/files/digest-ccze-0.2.1-r2 b/app-admin/ccze/files/digest-ccze-0.2.1-r2 new file mode 100644 index 000000000000..6bfb802e7ad1 --- /dev/null +++ b/app-admin/ccze/files/digest-ccze-0.2.1-r2 @@ -0,0 +1,3 @@ +MD5 221966bce7c5f011eca38157241a0432 ccze-0.2.1.tar.gz 139795 +RMD160 22d89140ea0518c6a33c07464620a2a1fb212b94 ccze-0.2.1.tar.gz 139795 +SHA256 8263a11183fd356a033b6572958d5a6bb56bfd2dba801ed0bff276cfae528aa3 ccze-0.2.1.tar.gz 139795 |