summaryrefslogtreecommitdiff
path: root/news/newsx/files/patch-af
diff options
context:
space:
mode:
Diffstat (limited to 'news/newsx/files/patch-af')
-rw-r--r--news/newsx/files/patch-af37
1 files changed, 0 insertions, 37 deletions
diff --git a/news/newsx/files/patch-af b/news/newsx/files/patch-af
deleted file mode 100644
index aa0cd6f3c47d..000000000000
--- a/news/newsx/files/patch-af
+++ /dev/null
@@ -1,37 +0,0 @@
---- lib/getopt.c.orig Sun Sep 27 09:34:20 1998
-+++ lib/getopt.c Thu Feb 15 21:30:54 2001
-@@ -23,6 +23,9 @@
- Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
-
- $Log: getopt.c,v $
-+ Revision x.x 2001/02/14
-+ Got rid of another gcc warning (<thierry@thomas.as>)
-+
- Revision 1.2 1998/09/27 07:34:20 src
- Got rid of gcc warning
-
-@@ -554,17 +557,20 @@
- else
- {
- if (opterr)
-+ {
- if (argv[optind - 1][1] == '-')
- /* --option */
- fprintf (stderr,
- gettext ("%s: option `--%s' doesn't allow an argument\n"),
- argv[0], pfound->name);
- else
-+ {
- /* +option or -option */
-- fprintf (stderr,
-- gettext ("%s: option `%c%s' doesn't allow an argument\n"),
-- argv[0], argv[optind - 1][0], pfound->name);
--
-+ fprintf (stderr,
-+ gettext ("%s: option `%c%s' doesn't allow an argument\n"),
-+ argv[0], argv[optind - 1][0], pfound->name);
-+ }
-+ }
- nextchar += strlen (nextchar);
- return '?';
- }