mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-17 05:45:46 +01:00
22 lines
705 B
Diff
22 lines
705 B
Diff
Description: Fix man invocation
|
|
Upon startup, tcpick says:
|
|
.
|
|
important: `man 1 tcpick' explains all options available
|
|
.
|
|
but the man page is in section 8, not 1. This patch fixes that.
|
|
Bug-Debian: http://bugs.debian.org/265067
|
|
Origin: vendor
|
|
Author: Cédric Delfosse <cedric@debian.org>
|
|
Last-Update: 2004-08-18
|
|
|
|
--- a/src/args.c
|
|
+++ b/src/args.c
|
|
@@ -386,7 +386,7 @@ parse_args(int argc, char ** argv)
|
|
if(flags.versionandquit) {
|
|
color( c_USAGE, stdout, PACKAGE_STRING "\n"
|
|
" Author: " AUTHOR "\n"
|
|
- " for other info try `man 1 tcpick', or `%s --help'\n\n"
|
|
+ " for other info try `man tcpick', or `%s --help'\n\n"
|
|
TERMS ,TCPICK_NAME);
|
|
exit( TCPICK_SUCCESS );
|
|
}
|