diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2011-11-21 14:25:15 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2011-11-21 14:25:15 +0100 |
commit | 5f118ff8851adb8370e8f130bb2ec2e80b55246c (patch) | |
tree | 6d8d2841a2ce317f0195fe5954dbbc8f046546bf /mailutils/mail.h | |
parent | 2951add2bf240e47b1d2e7bc384f138428391366 (diff) | |
parent | fc186711fe75cfc4abda9a7ff29050bc7a56313b (diff) | |
download | busybox-w32-5f118ff8851adb8370e8f130bb2ec2e80b55246c.tar.gz busybox-w32-5f118ff8851adb8370e8f130bb2ec2e80b55246c.tar.bz2 busybox-w32-5f118ff8851adb8370e8f130bb2ec2e80b55246c.zip |
Merge branch 'master' of git+ssh://busybox.net/var/lib/git/busybox
Diffstat (limited to 'mailutils/mail.h')
-rw-r--r-- | mailutils/mail.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/mailutils/mail.h b/mailutils/mail.h index d1d783055..fa0c5b378 100644 --- a/mailutils/mail.h +++ b/mailutils/mail.h | |||
@@ -16,22 +16,15 @@ struct globals { | |||
16 | char *pass; | 16 | char *pass; |
17 | FILE *fp0; // initial stdin | 17 | FILE *fp0; // initial stdin |
18 | char *opt_charset; | 18 | char *opt_charset; |
19 | char *content_type; | ||
20 | }; | 19 | }; |
21 | 20 | ||
22 | #define G (*ptr_to_globals) | 21 | #define G (*ptr_to_globals) |
23 | #define timeout (G.timeout ) | 22 | #define timeout (G.timeout ) |
24 | #define verbose (G.verbose ) | 23 | #define verbose (G.verbose ) |
25 | #define opts (G.opts ) | 24 | #define opts (G.opts ) |
26 | //#define user (G.user ) | ||
27 | //#define pass (G.pass ) | ||
28 | //#define fp0 (G.fp0 ) | ||
29 | //#define opt_charset (G.opt_charset) | ||
30 | //#define content_type (G.content_type) | ||
31 | #define INIT_G() do { \ | 25 | #define INIT_G() do { \ |
32 | SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \ | 26 | SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \ |
33 | G.opt_charset = (char *)CONFIG_FEATURE_MIME_CHARSET; \ | 27 | G.opt_charset = (char *)CONFIG_FEATURE_MIME_CHARSET; \ |
34 | G.content_type = (char *)"text/plain"; \ | ||
35 | } while (0) | 28 | } while (0) |
36 | 29 | ||
37 | //char FAST_FUNC *parse_url(char *url, char **user, char **pass); | 30 | //char FAST_FUNC *parse_url(char *url, char **user, char **pass); |