This is the mail archive of the binutils-cvs@sourceware.org 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]

[binutils-gdb] Fix mistake in the declaration of the --include-all-whitespace option of the strings utility.


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=e535d0ddb3ca97c849bd3dbab997dc756625cc9e

commit e535d0ddb3ca97c849bd3dbab997dc756625cc9e
Author: Matthias Klose <doko@debian.org>
Date:   Mon Feb 19 11:56:53 2018 +0000

    Fix mistake in the declaration of the --include-all-whitespace option of the strings utility.
    
    	* strings.c (long_options): Include-all-whitespace does not take
            an extra agument.

Diff:
---
 binutils/ChangeLog | 5 +++++
 binutils/strings.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/binutils/ChangeLog b/binutils/ChangeLog
index 19b9507..11fe4f8 100644
--- a/binutils/ChangeLog
+++ b/binutils/ChangeLog
@@ -1,3 +1,8 @@
+2018-02-19  Matthias Klose  <doko@debian.org>
+
+	* strings.c (long_options): Include-all-whitespace does not take
+        an extra agument.
+
 2018-02-13  Alan Modra  <amodra@gmail.com>
 
 	PR 22836
diff --git a/binutils/strings.c b/binutils/strings.c
index da044ac..7655ab6 100644
--- a/binutils/strings.c
+++ b/binutils/strings.c
@@ -125,7 +125,7 @@ static struct option long_options[] =
   {"print-file-name", no_argument, NULL, 'f'},
   {"bytes", required_argument, NULL, 'n'},
   {"radix", required_argument, NULL, 't'},
-  {"include-all-whitespace", required_argument, NULL, 'w'},
+  {"include-all-whitespace", no_argument, NULL, 'w'},
   {"encoding", required_argument, NULL, 'e'},
   {"target", required_argument, NULL, 'T'},
   {"output-separator", required_argument, NULL, 's'},


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