summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2002-09-28 16:32:31 +0000
committerJim Meyering <jim@meyering.net>2002-09-28 16:32:31 +0000
commit6fee4452d3ea3dd5aa5d8aad5d4449221016e234 (patch)
tree738e8bf57549af887058f3b6bb0327c63fce260b
parent16b4b4f86171fc78f894f4e4dbbe1e70914c533a (diff)
downloadcoreutils-6fee4452d3ea3dd5aa5d8aad5d4449221016e234.tar.xz
*** empty log message ***
-rw-r--r--ChangeLog13
1 files changed, 13 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 10b1fb102..753bd3ecf 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,14 @@
* Version 4.5.2.
+ * src/sort.c (begfield, limfield): Rearrange comparisons to avoid
+ compiler warnings.
+ (fillbuf, keycompare): Cast literal `-1' to size_t in comparisons,
+ to avoid compiler warnings.
+
+ * src/shred.c (dopass): Use a uintmax_t temporary to avoid bogus
+ compiler warnings.
+
Fix things so `mkdir -p' can create very deep directories, e.g.,
mkdir -p $(perl -e 'print "a/" x 40000') now works.
* src/mkdir.c (main): For --parents (-p), call make_path with the
@@ -10,6 +18,11 @@
* makepath.c (make_path): Restore umask *before* creating the final
component.
+2002-09-27 Andreas Schwab <schwab@suse.de>
+
+ * src/tail.c (tail_bytes): Change type of bytes_remaining to off_t
+ to avoid overflow. Reported by Hans Lermen.
+
2002-09-26 Jim Meyering <meyering@lucent.com>
* src/install.c (get_ids): Use strtoul, not strtol. Remove some casts.