Lines 16-29
Link Here
|
16 |
pop3.c | 4 ++-- |
16 |
pop3.c | 4 ++-- |
17 |
8 files changed, 18 insertions(+), 10 deletions(-) |
17 |
8 files changed, 18 insertions(+), 10 deletions(-) |
18 |
|
18 |
|
19 |
diff --git a/NEWS b/NEWS |
19 |
diff -up work/fetchmail-6.4.10/NEWS.orig work/fetchmail-6.4.10/NEWS |
20 |
index c01f9df9..9485edca 100644 |
|
|
21 |
--- a/NEWS |
20 |
--- a/NEWS |
22 |
+++ b/NEWS |
21 |
+++ b/NEWS |
23 |
@@ -63,5 +63,12 @@ |
22 |
@@ -63,7 +63,13 @@ removed from a 6.5.0 or newer release.) |
|
|
23 |
* Fetchmail does not guarantee compatibility with EOL OpenSSL versions. Support |
24 |
for end-of-life OpenSSL versions may be removed even from patchlevel releases. |
24 |
|
25 |
|
25 |
-------------------------------------------------------------------------------- |
26 |
---------------------------------------------------------------------------------- |
26 |
|
27 |
+-------------------------------------------------------------------------------- |
27 |
+## BUG FIXES |
28 |
+## BUG FIXES |
28 |
+* fetchmail can now report mailbox sizes of 2^31 octets and beyond. |
29 |
+* fetchmail can now report mailbox sizes of 2^31 octets and beyond. |
29 |
+ This requires C99 support (for the long long type). |
30 |
+ This requires C99 support (for the long long type). |
Lines 30-38
Link Here
|
30 |
+ Fixes Debian Bug#873668, reported by Andreas Schmidt. |
31 |
+ Fixes Debian Bug#873668, reported by Andreas Schmidt. |
31 |
+ |
32 |
+ |
32 |
+-------------------------------------------------------------------------------- |
33 |
+-------------------------------------------------------------------------------- |
33 |
+ |
34 |
fetchmail-6.4.10 (released 2020-08-27, 27596 LoC): |
34 |
fetchmail-6.4.1 (released 2019-09-28, 27473 LoC): |
|
|
35 |
|
35 |
|
|
|
36 |
# REGRESSION FIX: |
36 |
diff --git a/driver.c b/driver.c |
37 |
diff --git a/driver.c b/driver.c |
37 |
index d21a32ab..a5033729 100644 |
38 |
index d21a32ab..a5033729 100644 |
38 |
--- a/driver.c |
39 |
--- a/driver.c |