summaryrefslogtreecommitdiff
path: root/lib/safe-read.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/safe-read.c')
-rw-r--r--lib/safe-read.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/safe-read.c b/lib/safe-read.c
index ee024ee50b..52a11c4ba2 100644
--- a/lib/safe-read.c
+++ b/lib/safe-read.c
@@ -57,7 +57,7 @@ safe_rw (int fd, void const *buf, size_t count)
{
/* Work around a bug in Tru64 5.1. Attempting to read more than
INT_MAX bytes fails with errno == EINVAL. See
- <http://lists.gnu.org/archive/html/bug-gnu-utils/2002-04/msg00010.html>.
+ <https://lists.gnu.org/archive/html/bug-gnu-utils/2002-04/msg00010.html>.
When decreasing COUNT, keep it block-aligned. */
enum { BUGGY_READ_MAXIMUM = INT_MAX & ~8191 };