- fix the build if we have ftpput without ftpget (speeling reeoe)

Thanks to Stephane Billiart
This commit is contained in:
Bernhard Reutner-Fischer 2006-06-07 13:31:59 +00:00
parent 0753f4a15e
commit e0387a6ee8
2 changed files with 3 additions and 3 deletions

View File

@ -117,7 +117,7 @@ static FILE *ftp_login(ftp_host_info_t *server)
#if !ENABLE_FTPGET #if !ENABLE_FTPGET
#define ftp_receive 0 #define ftp_receive 0
#else #else
static int ftp_recieve(ftp_host_info_t *server, FILE *control_stream, static int ftp_receive(ftp_host_info_t *server, FILE *control_stream,
const char *local_path, char *server_path) const char *local_path, char *server_path)
{ {
char buf[512]; char buf[512];
@ -303,7 +303,7 @@ int ftpgetput_main(int argc, char **argv)
ftp_action = ftp_send; ftp_action = ftp_send;
} }
if (ENABLE_FTPGET && (!ENABLE_FTPPUT || bb_applet_name[3] == 'g')) { if (ENABLE_FTPGET && (!ENABLE_FTPPUT || bb_applet_name[3] == 'g')) {
ftp_action = ftp_recieve; ftp_action = ftp_receive;
} }
/* Set default values */ /* Set default values */

View File

@ -109,7 +109,7 @@ static struct tsession *sessions;
/* /*
Remove all IAC's from the buffer pointed to by bf (recieved IACs are ignored Remove all IAC's from the buffer pointed to by bf (received IACs are ignored
and must be removed so as to not be interpreted by the terminal). Make an and must be removed so as to not be interpreted by the terminal). Make an
uninterrupted string of characters fit for the terminal. Do this by packing uninterrupted string of characters fit for the terminal. Do this by packing
all characters meant for the terminal sequentially towards the end of bf. all characters meant for the terminal sequentially towards the end of bf.