diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2013-07-30 11:52:58 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2013-07-30 11:52:58 +0200 |
commit | 982e87f2fb45bf8a951774b3c6dab7afb0dc89f8 (patch) | |
tree | f3c90eaa6dba03d209b9f05c799c3ded447cad22 /networking/wget.c | |
parent | bfa6ed1bf43ea607e33a6e89a0ef03f84a5b5d38 (diff) | |
download | busybox-w32-982e87f2fb45bf8a951774b3c6dab7afb0dc89f8.tar.gz busybox-w32-982e87f2fb45bf8a951774b3c6dab7afb0dc89f8.tar.bz2 busybox-w32-982e87f2fb45bf8a951774b3c6dab7afb0dc89f8.zip |
Whitespace fixes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/wget.c')
-rw-r--r-- | networking/wget.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/networking/wget.c b/networking/wget.c index ce2f51411..5dac2b500 100644 --- a/networking/wget.c +++ b/networking/wget.c | |||
@@ -62,14 +62,14 @@ struct globals { | |||
62 | const char *curfile; /* Name of current file being transferred */ | 62 | const char *curfile; /* Name of current file being transferred */ |
63 | bb_progress_t pmt; | 63 | bb_progress_t pmt; |
64 | #endif | 64 | #endif |
65 | char *dir_prefix; | 65 | char *dir_prefix; |
66 | #if ENABLE_FEATURE_WGET_LONG_OPTIONS | 66 | #if ENABLE_FEATURE_WGET_LONG_OPTIONS |
67 | char *post_data; | 67 | char *post_data; |
68 | char *extra_headers; | 68 | char *extra_headers; |
69 | #endif | 69 | #endif |
70 | char *fname_out; /* where to direct output (-O) */ | 70 | char *fname_out; /* where to direct output (-O) */ |
71 | const char *proxy_flag; /* Use proxies if env vars are set */ | 71 | const char *proxy_flag; /* Use proxies if env vars are set */ |
72 | const char *user_agent; /* "User-Agent" header field */ | 72 | const char *user_agent; /* "User-Agent" header field */ |
73 | #if ENABLE_FEATURE_WGET_TIMEOUT | 73 | #if ENABLE_FEATURE_WGET_TIMEOUT |
74 | unsigned timeout_seconds; | 74 | unsigned timeout_seconds; |
75 | #endif | 75 | #endif |
@@ -86,7 +86,7 @@ struct globals { | |||
86 | } FIX_ALIASING; | 86 | } FIX_ALIASING; |
87 | #define G (*ptr_to_globals) | 87 | #define G (*ptr_to_globals) |
88 | #define INIT_G() do { \ | 88 | #define INIT_G() do { \ |
89 | SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \ | 89 | SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \ |
90 | IF_FEATURE_WGET_TIMEOUT(G.timeout_seconds = 900;) \ | 90 | IF_FEATURE_WGET_TIMEOUT(G.timeout_seconds = 900;) \ |
91 | } while (0) | 91 | } while (0) |
92 | 92 | ||