diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-01-11 16:51:21 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-01-11 16:51:21 +0000 |
commit | 3821fb13ea404d243115ff8ec161273b62826513 (patch) | |
tree | 89b3d79a1c900f270e4471a78cdd8859967dda01 /networking/ftpgetput.c | |
parent | 8e9ccba371480fb1fb3da9235fabdbb7861523c3 (diff) |
fix verbose output; remove commented-out includes.
Diffstat (limited to 'networking/ftpgetput.c')
-rw-r--r-- | networking/ftpgetput.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/networking/ftpgetput.c b/networking/ftpgetput.c index 9086cb126..e9ba5435a 100644 --- a/networking/ftpgetput.c +++ b/networking/ftpgetput.c @@ -22,8 +22,8 @@ typedef struct ftp_host_info_s { struct len_and_sockaddr *lsa; } ftp_host_info_t; -static char verbose_flag; -static char do_continue; +static smallint verbose_flag; +static smallint do_continue; static void ftp_die(const char *msg, const char *remote) ATTRIBUTE_NORETURN; static void ftp_die(const char *msg, const char *remote) @@ -41,7 +41,7 @@ static int ftpcmd(const char *s1, const char *s2, FILE *stream, char *buf) { unsigned n; if (verbose_flag) { - bb_error_msg("cmd %s%s", s1, s2); + bb_error_msg("cmd %s %s", s1, s2); } if (s1) { @@ -320,10 +320,9 @@ int ftpgetput_main(int argc, char **argv) #endif /* Set default values */ - server = xmalloc(sizeof(ftp_host_info_t)); + server = xmalloc(*server); server->user = "anonymous"; server->password = "busybox@"; - verbose_flag = 0; /* * Decipher the command line |