ftpgetput: show only short options in --help text
authorDenys Vlasenko <vda.linux@googlemail.com>
Tue, 8 Aug 2017 20:33:02 +0000 (22:33 +0200)
committerDenys Vlasenko <vda.linux@googlemail.com>
Tue, 8 Aug 2017 20:33:02 +0000 (22:33 +0200)
function                                             old     new   delta
packed_usage                                       31687   31675     -12

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
networking/ftpgetput.c

index 2cce07ac29c77f1cdd41896739ccca59c78b84d9..e866a7754ac72127470358613d37842a21381bdd 100644 (file)
 //usage:       "[OPTIONS] HOST [LOCAL_FILE] REMOTE_FILE"
 //usage:#define ftpget_full_usage "\n\n"
 //usage:       "Download a file via FTP\n"
-//usage:       IF_FEATURE_FTPGETPUT_LONG_OPTIONS(
-//usage:     "\n       -c,--continue           Continue previous transfer"
-//usage:     "\n       -v,--verbose            Verbose"
-//usage:     "\n       -u,--username USER      Username"
-//usage:     "\n       -p,--password PASS      Password"
-//usage:     "\n       -P,--port NUM           Port"
-//usage:       )
-//usage:       IF_NOT_FEATURE_FTPGETPUT_LONG_OPTIONS(
 //usage:     "\n       -c      Continue previous transfer"
 //usage:     "\n       -v      Verbose"
 //usage:     "\n       -u USER Username"
 //usage:     "\n       -p PASS Password"
 //usage:     "\n       -P NUM  Port"
-//usage:       )
 //usage:
 //usage:#define ftpput_trivial_usage
 //usage:       "[OPTIONS] HOST [REMOTE_FILE] LOCAL_FILE"
 //usage:#define ftpput_full_usage "\n\n"
 //usage:       "Upload a file to a FTP server\n"
-//usage:       IF_FEATURE_FTPGETPUT_LONG_OPTIONS(
-//usage:     "\n       -v,--verbose            Verbose"
-//usage:     "\n       -u,--username USER      Username"
-//usage:     "\n       -p,--password PASS      Password"
-//usage:     "\n       -P,--port NUM           Port"
-//usage:       )
-//usage:       IF_NOT_FEATURE_FTPGETPUT_LONG_OPTIONS(
 //usage:     "\n       -v      Verbose"
 //usage:     "\n       -u USER Username"
 //usage:     "\n       -p PASS Password"
 //usage:     "\n       -P NUM  Port number"
-//usage:       )
 
 #include "libbb.h"
 #include "common_bufsiz.h"