diff options
author | Tobin C. Harding <tobin@kernel.org> | 2018-10-22 20:37:02 -0400 |
---|---|---|
committer | Tobin C. Harding <tobin@kernel.org> | 2019-03-06 16:53:18 -0500 |
commit | 9ac060a708e054233265f8febfcef009ac3da826 (patch) | |
tree | ca8cd84b764dbacbe8197544d312efdc800a2ad3 /scripts/leaking_addresses.pl | |
parent | 0f2994333315f004265571eab787474b73d72ed6 (diff) |
leaking_addresses: Completely remove --version flag
Recently attempt to remove the '--version' flag was made, badly. We
failed to remove mention of it from the help output. And we (me) failed
to actually remove the flag from the options list.
_Completely_ remove --version flag.
Diffstat (limited to 'scripts/leaking_addresses.pl')
-rwxr-xr-x | scripts/leaking_addresses.pl | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/leaking_addresses.pl b/scripts/leaking_addresses.pl index 214c12be8c86..ef9e5b2a1614 100755 --- a/scripts/leaking_addresses.pl +++ b/scripts/leaking_addresses.pl | |||
@@ -97,7 +97,7 @@ Options: | |||
97 | --32-bit Scan 32-bit kernel. | 97 | --32-bit Scan 32-bit kernel. |
98 | --page-offset-32-bit=o Page offset (for 32-bit kernel 0xABCD1234). | 98 | --page-offset-32-bit=o Page offset (for 32-bit kernel 0xABCD1234). |
99 | -d, --debug Display debugging output. | 99 | -d, --debug Display debugging output. |
100 | -h, --help, --version Display this help and exit. | 100 | -h, --help Display this help and exit. |
101 | 101 | ||
102 | Scans the running kernel for potential leaking addresses. | 102 | Scans the running kernel for potential leaking addresses. |
103 | 103 | ||
@@ -108,7 +108,6 @@ EOM | |||
108 | GetOptions( | 108 | GetOptions( |
109 | 'd|debug' => \$debug, | 109 | 'd|debug' => \$debug, |
110 | 'h|help' => \$help, | 110 | 'h|help' => \$help, |
111 | 'version' => \$help, | ||
112 | 'o|output-raw=s' => \$output_raw, | 111 | 'o|output-raw=s' => \$output_raw, |
113 | 'i|input-raw=s' => \$input_raw, | 112 | 'i|input-raw=s' => \$input_raw, |
114 | 'suppress-dmesg' => \$suppress_dmesg, | 113 | 'suppress-dmesg' => \$suppress_dmesg, |