X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=rfc2047.c;h=209330e1a13a7e3c176990dee17cfce4a1cc7e19;hp=596b32747c2baafb6384f43373dd7f87f3a35bbd;hb=b08dddc66a9054c0740878e53dd76c770e761553;hpb=0f44dc85fc1280372ffab911d701e703d803fb4b diff --git a/rfc2047.c b/rfc2047.c index 596b327..209330e 100644 --- a/rfc2047.c +++ b/rfc2047.c @@ -543,10 +543,6 @@ void rfc2047_encode_adrlist (ADDRESS * addr, const char *tag) while (ptr) { if (ptr->personal) _rfc2047_encode_string (&ptr->personal, 1, col); -#ifdef EXACT_ADDRESS - if (ptr->val) - _rfc2047_encode_string (&ptr->val, 1, col); -#endif ptr = ptr->next; } } @@ -801,10 +797,6 @@ void rfc2047_decode_adrlist (ADDRESS * a) while (a) { if (a->personal) rfc2047_decode (&a->personal); -#ifdef EXACT_ADDRESS - if (a->val && strstr (a->val, "=?") != NULL) - rfc2047_decode (&a->val); -#endif a = a->next; } }