This is the mail archive of the binutils@sources.redhat.com mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] nm.c/objdump.c demangle short option bug fix.


2002-6-4  Elias Athanasopoulos  <eathan@otenet.gr>

        * nm.c: demangle short option bug fix.
	* objdump.c: Likewise.


--- nm.c.orig	Tue Jun  4 01:50:28 2002
+++ nm.c	Tue Jun  4 01:43:52 2002
@@ -422,7 +422,7 @@
   bfd_init ();
   set_default_bfd_target ();
 
-  while ((c = getopt_long (argc, argv, "aABCDef:gHhlnopPrst:uvVvX:",
+  while ((c = getopt_long (argc, argv, "aABC:Def:gHhlnopPrst:uvVvX:",
 			   long_options, (int *) 0)) != EOF)
     {
       switch (c)

--- objdump.c.orig	Tue Jun  4 01:48:07 2002
+++ objdump.c	Tue Jun  4 01:49:31 2002
@@ -2764,7 +2764,7 @@
   bfd_init ();
   set_default_bfd_target ();
 
-  while ((c = getopt_long (argc, argv, "pib:m:M:VvCdDlfaHhrRtTxsSj:wE:zgG",
+  while ((c = getopt_long (argc, argv, "pib:m:M:VvC:dDlfaHhrRtTxsSj:wE:zgG",
 			   long_options, (int *) 0))
 	 != EOF)
     {



Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]