diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2001-05-15 21:14:40 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2001-05-15 21:14:40 +0000 |
commit | 702c312cb2831ffe553edec88356e10045e393dc (patch) | |
tree | 4a2502c33d39858af039f48178358183b02c5015 /lib/libc_r | |
parent | 58f7e38be96df800e8b4421a044937182e3679b5 (diff) |
Make path length variables size_t. This fixes the problem where
things like rm can't remove files with ridiculously long path names
that were created by some script kiddie trying in vain to exploit
something. Previously, the length was effectively constrained to
USHRT_MAX due to one of the internal structs. Also, nuke FTS_CHDIRROOT
since it never worked correctly and hasn't been documented for a
long time.
Diffstat (limited to 'lib/libc_r')
-rw-r--r-- | lib/libc_r/shlib_version | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc_r/shlib_version b/lib/libc_r/shlib_version index f89dbabf714..3066b9771e7 100644 --- a/lib/libc_r/shlib_version +++ b/lib/libc_r/shlib_version @@ -1,2 +1,2 @@ -major=4 -minor=2 +major=5 +minor=0 |