aboutsummaryrefslogtreecommitdiff
path: root/networking/ftpgetput.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-06-25 09:53:17 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-06-25 09:53:17 +0000
commit7049ff8696c3c2a1be0f9901d7e2473568b8f918 (patch)
treec952ee767508bb76c25d6269a298aa16cad99b82 /networking/ftpgetput.c
parentf26e3d2e41cc7d2fabcf5c2e777306c36a8d5868 (diff)
downloadbusybox-w32-7049ff8696c3c2a1be0f9901d7e2473568b8f918.tar.gz
busybox-w32-7049ff8696c3c2a1be0f9901d7e2473568b8f918.tar.bz2
busybox-w32-7049ff8696c3c2a1be0f9901d7e2473568b8f918.zip
whitespace fixes. no code changes
Diffstat (limited to 'networking/ftpgetput.c')
-rw-r--r--networking/ftpgetput.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/networking/ftpgetput.c b/networking/ftpgetput.c
index be3d5a673..f732d02a4 100644
--- a/networking/ftpgetput.c
+++ b/networking/ftpgetput.c
@@ -27,7 +27,7 @@ struct globals {
27#define G (*(struct globals*)&bb_common_bufsiz1) 27#define G (*(struct globals*)&bb_common_bufsiz1)
28enum { BUFSZ = COMMON_BUFSIZE - offsetof(struct globals, buf) }; 28enum { BUFSZ = COMMON_BUFSIZE - offsetof(struct globals, buf) };
29struct BUG_G_too_big { 29struct BUG_G_too_big {
30 char BUG_G_too_big[sizeof(G) <= COMMON_BUFSIZE ? 1 : -1]; 30 char BUG_G_too_big[sizeof(G) <= COMMON_BUFSIZE ? 1 : -1];
31}; 31};
32#define user (G.user ) 32#define user (G.user )
33#define password (G.password ) 33#define password (G.password )
@@ -36,8 +36,7 @@ struct BUG_G_too_big {
36#define verbose_flag (G.verbose_flag ) 36#define verbose_flag (G.verbose_flag )
37#define do_continue (G.do_continue ) 37#define do_continue (G.do_continue )
38#define buf (G.buf ) 38#define buf (G.buf )
39#define INIT_G() do { \ 39#define INIT_G() do { } while (0)
40} while (0)
41 40
42 41
43static void ftp_die(const char *msg) ATTRIBUTE_NORETURN; 42static void ftp_die(const char *msg) ATTRIBUTE_NORETURN;