~ubuntu-branches/ubuntu/karmic/cyrus-imapd-2.2/karmic

« back to all changes in this revision

Viewing changes to debian/patches/70-allow-larger-buffers.dpatch

  • Committer: Bazaar Package Importer
  • Author(s): Steve Kowalik
  • Date: 2007-06-15 23:13:30 UTC
  • Revision ID: james.westby@ubuntu.com-20070615231330-w1i9dnoi9f8jxgal
Tags: 2.2.13-11ubuntu1
* Merge from Debian unstable.
* Remaining Ubuntu changes:
  - Add a patch to drop libdb4.4 detection, as it will always use that
    if it's available.
  - Update configure patching in 99-update-autoconf.
  - Munge Maintainer field as per spec.
* Ubuntu changes dropped:
  - Add missing semi-colon and correct a const in 61-64bit-quota.
* Re-enable copying of config.{sub,guess}, given the upstream provided one
  is from 1999.
* Don't have the clean rule depend on configure.

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
## DP: http://cyrus.brong.fastmail.fm/patches/cyrus-longwords-2.3.3.diff
8
8
 
9
9
@DPATCH@
10
 
diff -urNad cyrus-imapd-2.2.13/imap/imapparse.c /tmp/dpep.n4kRMv/cyrus-imapd-2.2.13/imap/imapparse.c
11
 
--- cyrus-imapd-2.2.13/imap/imapparse.c 2006-03-31 20:18:13.000000000 +0200
12
 
+++ /tmp/dpep.n4kRMv/cyrus-imapd-2.2.13/imap/imapparse.c        2006-05-24 14:33:42.733793569 +0200
13
 
@@ -52,8 +52,8 @@
 
10
diff -urNad cyrus-imapd-2.2.13/imap/imapparse.c /tmp/dpep.G4uvjC/cyrus-imapd-2.2.13/imap/imapparse.c
 
11
--- cyrus-imapd-2.2.13/imap/imapparse.c 2007-02-25 21:39:04.000000000 +0100
 
12
+++ /tmp/dpep.G4uvjC/cyrus-imapd-2.2.13/imap/imapparse.c        2007-02-25 21:40:19.830078835 +0100
 
13
@@ -52,9 +52,9 @@
14
14
 #include "exitcodes.h"
15
15
 
16
16
 enum {
17
17
-    MAXQUOTED = 32768,
18
18
-    MAXWORD = 32768,
19
 
+    MAXQUOTED = 131072,
20
 
+    MAXWORD = 131072,
21
 
     MAXLITERAL = INT_MAX / 20
 
19
-    MAXLITERAL = INT_MAX / 20
 
20
+    MAXQUOTED = 524288,
 
21
+    MAXWORD = 524288,
 
22
+    MAXLITERAL = INT_MAX / 10
22
23
 };
23
24
 
 
25
 void freebuf(struct buf *buf)