diff options
author | ghen <ghen> | 2006-08-02 21:16:43 +0000 |
---|---|---|
committer | ghen <ghen> | 2006-08-02 21:16:43 +0000 |
commit | dd6c8a8027315b560335fed11bcc1b3322a5b22c (patch) | |
tree | d30f6705fbb7057b578bf0ed5f70fc3d8ef8186e /mail/dovecot/patches | |
parent | bf7176de59735f160aa8e38fa0135082bd74205f (diff) | |
download | pkgsrc-dd6c8a8027315b560335fed11bcc1b3322a5b22c.tar.gz |
Dovecot 1.0rc4 had another bug in it which was fixed in CVS. Now in patch-ai.
Diffstat (limited to 'mail/dovecot/patches')
-rw-r--r-- | mail/dovecot/patches/patch-ai | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/mail/dovecot/patches/patch-ai b/mail/dovecot/patches/patch-ai new file mode 100644 index 00000000000..d4ae33f0359 --- /dev/null +++ b/mail/dovecot/patches/patch-ai @@ -0,0 +1,20 @@ +$NetBSD: patch-ai,v 1.1 2006/08/02 21:16:43 ghen Exp $ + +From dovecot CVS. Fixes the problem discussed in this thread: +http://www.dovecot.org/list/dovecot/2006-August/015116.html + +--- src/lib-index/mail-index-transaction-view.c.orig 2006-08-02 21:38:07.000000000 +0200 ++++ src/lib-index/mail-index-transaction-view.c 2006-08-02 23:04:00.000000000 +0200 +@@ -53,10 +53,10 @@ + i_assert(recs[count-1].uid >= hdr->next_uid); + tview->hdr = *hdr; + tview->hdr.next_uid = recs[count-1].uid + 1; +- hdr = &view->hdr; ++ hdr = &tview->hdr; + } + } +- return &tview->hdr; ++ return hdr; + } + + static int _tview_lookup_full(struct mail_index_view *view, uint32_t seq, |