]> granicus.if.org Git - mutt/commitdiff
Increase a buffer to make larger group aliases possible. The
authorThomas Roessler <roessler@does-not-exist.org>
Thu, 23 Sep 1999 20:01:13 +0000 (20:01 +0000)
committerThomas Roessler <roessler@does-not-exist.org>
Thu, 23 Sep 1999 20:01:13 +0000 (20:01 +0000)
current STRING buffer was far too small.

alias.c

diff --git a/alias.c b/alias.c
index 9f1afab17093a87ec9b80c66f98baee615f23fae..e6bc1a28ac5500fe052f72deffbcd80963a6eeb6 100644 (file)
--- a/alias.c
+++ b/alias.c
@@ -326,7 +326,7 @@ int mutt_alias_complete (char *s, size_t buflen)
 {
   ALIAS *a = Aliases;
   ALIAS *a_list = NULL, *a_cur = NULL;
-  char bestname[STRING];
+  char bestname[HUGE_STRING];
   int i;
 
 #define min(a,b)        ((a<b)?a:b)