summaryrefslogtreecommitdiff
path: root/print/pdq/files/patch-ab
diff options
context:
space:
mode:
Diffstat (limited to 'print/pdq/files/patch-ab')
-rw-r--r--print/pdq/files/patch-ab38
1 files changed, 0 insertions, 38 deletions
diff --git a/print/pdq/files/patch-ab b/print/pdq/files/patch-ab
deleted file mode 100644
index 9735d3419a60..000000000000
--- a/print/pdq/files/patch-ab
+++ /dev/null
@@ -1,38 +0,0 @@
---- src/parse_rc.c.orig Fri Mar 31 23:36:30 2000
-+++ src/parse_rc.c Tue Jul 11 11:08:20 2000
-@@ -23,7 +23,6 @@
- #include <glob.h>
- #include <string.h>
- #include <stdlib.h>
--#include <values.h>
-
-
- #include "parse.h"
-@@ -46,12 +45,8 @@
- i = glob (d, 0, NULL, &globbuf);
- free (d);
- if (i != 0) {
-- if (i == GLOB_NOMATCH) {
-- /* Keep on going */
-- } else {
-- fprintf (stderr, "Died while globbing %s\n", d);
-- my_exit (1);
-- }
-+ fprintf (stderr, "Died while globbing %s\n", d);
-+ my_exit (1);
- } else {
- /* Globbed something real */
- for (i = 0; i < globbuf.gl_pathc; i++) {
-@@ -74,11 +69,7 @@
-
- i = glob (d, 0, NULL, &globbuf);
- if (i != 0) {
-- if (i == GLOB_NOMATCH) {
-- fprintf (stderr, "No files match %s\n", d);
-- } else {
-- fprintf (stderr, "Died while globbing %s\n", d);
-- }
-+ fprintf (stderr, "Died while globbing %s\n", d);
- free (d);
- my_exit (1);
- } else {