- fix the build if we have ftpput without ftpget (speeling reeoe)
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Wed, 7 Jun 2006 13:31:59 +0000 (13:31 -0000)
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Wed, 7 Jun 2006 13:31:59 +0000 (13:31 -0000)
  Thanks to Stephane Billiart

networking/ftpgetput.c
networking/telnetd.c

index 4be49c5a958ee343eda4a6dc2f5b240f35cb05e0..9f3c789766730c29c8d7a4c7cb9e79323ffe6d0b 100644 (file)
@@ -117,7 +117,7 @@ static FILE *ftp_login(ftp_host_info_t *server)
 #if !ENABLE_FTPGET
 #define ftp_receive 0
 #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)
 {
        char buf[512];
@@ -303,7 +303,7 @@ int ftpgetput_main(int argc, char **argv)
                ftp_action = ftp_send;
        }
        if (ENABLE_FTPGET && (!ENABLE_FTPPUT || bb_applet_name[3] == 'g')) {
-               ftp_action = ftp_recieve;
+               ftp_action = ftp_receive;
        }
 
        /* Set default values */
index f2038395fe3133df7e9df232d61067e801205e35..9f0eedcc80e9591edeca4a5e4a07832c713f5f7d 100644 (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
    uninterrupted string of characters fit for the terminal.  Do this by packing
    all characters meant for the terminal sequentially towards the end of bf.