diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-03 21:00:43 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-03 21:00:43 +0000 |
commit | 8f8f268cfdecb4cabeb2e649a73afc7a485aeff5 (patch) | |
tree | 8c555cc94aca9fabd177526e554d93bed4886642 /networking/ftpgetput.c | |
parent | 67b23e6043d8e2b30b0bf3bc105b8583c2a26db5 (diff) | |
download | busybox-w32-8f8f268cfdecb4cabeb2e649a73afc7a485aeff5.tar.gz busybox-w32-8f8f268cfdecb4cabeb2e649a73afc7a485aeff5.tar.bz2 busybox-w32-8f8f268cfdecb4cabeb2e649a73afc7a485aeff5.zip |
bb_applet_name -> applet_name
Diffstat (limited to 'networking/ftpgetput.c')
-rw-r--r-- | networking/ftpgetput.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/ftpgetput.c b/networking/ftpgetput.c index 25b7f1427..492854153 100644 --- a/networking/ftpgetput.c +++ b/networking/ftpgetput.c | |||
@@ -288,10 +288,10 @@ int ftpgetput_main(int argc, char **argv) | |||
288 | int (*ftp_action)(ftp_host_info_t *, FILE *, const char *, char *) = NULL; | 288 | int (*ftp_action)(ftp_host_info_t *, FILE *, const char *, char *) = NULL; |
289 | 289 | ||
290 | /* Check to see if the command is ftpget or ftput */ | 290 | /* Check to see if the command is ftpget or ftput */ |
291 | if (ENABLE_FTPPUT && (!ENABLE_FTPGET || bb_applet_name[3] == 'p')) { | 291 | if (ENABLE_FTPPUT && (!ENABLE_FTPGET || applet_name[3] == 'p')) { |
292 | ftp_action = ftp_send; | 292 | ftp_action = ftp_send; |
293 | } | 293 | } |
294 | if (ENABLE_FTPGET && (!ENABLE_FTPPUT || bb_applet_name[3] == 'g')) { | 294 | if (ENABLE_FTPGET && (!ENABLE_FTPPUT || applet_name[3] == 'g')) { |
295 | ftp_action = ftp_receive; | 295 | ftp_action = ftp_receive; |
296 | } | 296 | } |
297 | 297 | ||