diff options
author | Michael Elkins <me@sigpipe.org> | 2010-04-11 20:00:38 -0700 |
---|---|---|
committer | Michael Elkins <me@sigpipe.org> | 2010-04-11 20:00:38 -0700 |
commit | 8dc2b823da23c519c047ccb313582b7820472c09 (patch) | |
tree | 966eeb3965e9ac9d5e4fac2cc880684d4da6879f | |
parent | e4db1b8be18d6cb5b925cb79b4a7c74db8a2829f (diff) |
increase size of buffer used for displaying addresses in the compose menu to avoid truncating on widescreen displays
-rw-r--r-- | compose.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -241,7 +241,7 @@ check_attachments(ATTACHPTR **idx, short idxlen) static void draw_envelope_addr (int line, ADDRESS *addr) { - char buf[STRING]; + char buf[LONG_STRING]; buf[0] = 0; rfc822_write_address (buf, sizeof (buf), addr, 1); |