svn commit: trunk/busybox/networking

aldot at busybox.net aldot at busybox.net
Wed Jun 7 13:32:01 UTC 2006


Author: aldot
Date: 2006-06-07 06:31:59 -0700 (Wed, 07 Jun 2006)
New Revision: 15305

Log:
- fix the build if we have ftpput without ftpget (speeling reeoe)
  Thanks to Stephane Billiart


Modified:
   trunk/busybox/networking/ftpgetput.c
   trunk/busybox/networking/telnetd.c


Changeset:
Modified: trunk/busybox/networking/ftpgetput.c
===================================================================
--- trunk/busybox/networking/ftpgetput.c	2006-06-07 12:31:21 UTC (rev 15304)
+++ trunk/busybox/networking/ftpgetput.c	2006-06-07 13:31:59 UTC (rev 15305)
@@ -117,7 +117,7 @@
 #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 @@
 		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 */

Modified: trunk/busybox/networking/telnetd.c
===================================================================
--- trunk/busybox/networking/telnetd.c	2006-06-07 12:31:21 UTC (rev 15304)
+++ trunk/busybox/networking/telnetd.c	2006-06-07 13:31:59 UTC (rev 15305)
@@ -109,7 +109,7 @@
 
 /*
 
-   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.




More information about the busybox-cvs mailing list