summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Elkins <me@sigpipe.org>2010-04-11 20:00:38 -0700
committerMichael Elkins <me@sigpipe.org>2010-04-11 20:00:38 -0700
commit8dc2b823da23c519c047ccb313582b7820472c09 (patch)
tree966eeb3965e9ac9d5e4fac2cc880684d4da6879f
parente4db1b8be18d6cb5b925cb79b4a7c74db8a2829f (diff)
increase size of buffer used for displaying addresses in the compose menu to avoid truncating on widescreen displays
-rw-r--r--compose.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/compose.c b/compose.c
index 788d6862..fa10c65a 100644
--- a/compose.c
+++ b/compose.c
@@ -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);