diff options
Diffstat (limited to 'mail/mutt/patches/patch-aj')
-rw-r--r-- | mail/mutt/patches/patch-aj | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/mail/mutt/patches/patch-aj b/mail/mutt/patches/patch-aj new file mode 100644 index 00000000000..bd2383d6702 --- /dev/null +++ b/mail/mutt/patches/patch-aj @@ -0,0 +1,29 @@ +--- buffy.c.orig Mon Mar 25 12:30:23 2002 ++++ buffy.c Mon Feb 2 08:17:26 2004 +@@ -440,7 +440,7 @@ + { + case 0: + +- s = '\0'; ++ *s = '\0'; + break; + + case 1: +@@ -449,7 +449,7 @@ + tmp = tmp->next; + if (!tmp) + { +- s = '\0'; ++ *s = '\0'; + mutt_buffy_check (1); /* buffy was wrong - resync things */ + break; + } +@@ -475,7 +475,7 @@ + } + if (count >= 3) + { +- s = '\0'; ++ *s = '\0'; + mutt_buffy_check (1); /* buffy was wrong - resync things */ + break; + } |