diff options
author | Rob Landley <rob@landley.net> | 2006-05-04 19:52:28 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2006-05-04 19:52:28 +0000 |
commit | b1c3fbc6776db1b85ec1d5028f76129bbae43e22 (patch) | |
tree | 202bae5682c8ce74a12b78b0eade275a4554689b | |
parent | 0c43046fdeee696491d5d3c89760ae98416f9505 (diff) |
CONFIG->ENABLE migration.
-rw-r--r-- | networking/ftpgetput.c | 24 | ||||
-rw-r--r-- | networking/nameif.c | 10 |
2 files changed, 13 insertions, 21 deletions
diff --git a/networking/ftpgetput.c b/networking/ftpgetput.c index 7a0ba7772..f285e8b31 100644 --- a/networking/ftpgetput.c +++ b/networking/ftpgetput.c @@ -122,7 +122,9 @@ static FILE *ftp_login(ftp_host_info_t *server) return(control_stream); } -#ifdef CONFIG_FTPGET +#if !ENABLE_FTPGET +#define ftp_receive 0 +#else static int ftp_recieve(ftp_host_info_t *server, FILE *control_stream, const char *local_path, char *server_path) { @@ -207,7 +209,9 @@ static int ftp_recieve(ftp_host_info_t *server, FILE *control_stream, } #endif -#ifdef CONFIG_FTPPUT +#if !ENABLE_FTPPUT +#define ftp_send 0 +#else static int ftp_send(ftp_host_info_t *server, FILE *control_stream, const char *server_path, char *local_path) { @@ -299,24 +303,12 @@ int ftpgetput_main(int argc, char **argv) int (*ftp_action)(ftp_host_info_t *, FILE *, const char *, char *) = NULL; /* Check to see if the command is ftpget or ftput */ -#ifdef CONFIG_FTPPUT -# ifdef CONFIG_FTPGET - if (bb_applet_name[3] == 'p') { + if (ENABLE_FTPPUT && (!ENABLE_FTPGET || bb_applet_name[3] == 'p')) { ftp_action = ftp_send; } -# else - ftp_action = ftp_send; -# endif -#endif -#ifdef CONFIG_FTPGET -# ifdef CONFIG_FTPPUT - if (bb_applet_name[3] == 'g') { + if (ENABLE_FTPGET && (!ENABLE_FTPPUT || bb_applet_name[3] == 'g')) { ftp_action = ftp_recieve; } -# else - ftp_action = ftp_recieve; -# endif -#endif /* Set default values */ server = xmalloc(sizeof(ftp_host_info_t)); diff --git a/networking/nameif.c b/networking/nameif.c index f28e5ebe3..8590a98ad 100644 --- a/networking/nameif.c +++ b/networking/nameif.c @@ -184,11 +184,11 @@ int nameif_main(int argc, char **argv) } if (ch->next != NULL) (ch->next)->prev = ch->prev; -#ifdef CONFIG_FEATURE_CLEAN_UP - free(ch->ifname); - free(ch->mac); - free(ch); -#endif + if (ENABLE_FEATURE_CLEAN_UP) { + free(ch->ifname); + free(ch->mac); + free(ch); + } } return 0; |