From 4ad1f0260501cf6e0ed1df1e888201a72f807ed6 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Tue, 20 Apr 1999 08:54:33 +0000 Subject: Update. 1999-04-20 Andreas Jaeger * posix/wordexp.c (parse_param): Fix type of offset to allow it to be used correctly as parameter for parse_dollars/parse_tilde. --- BUGS | 5 ++++- ChangeLog | 5 +++++ posix/wordexp.c | 4 ++-- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/BUGS b/BUGS index 748f0d0..9a6dd62 100644 --- a/BUGS +++ b/BUGS @@ -1,7 +1,7 @@ List of known bugs (certainly very incomplete) ---------------------------------------------- -Time-stamp: <1999-02-03T17:51:49-0800 drepper> +Time-stamp: <1999-04-19T17:58:10-0700 drepper> This following list contains those bugs which I'm aware of. Please make sure that bugs you report are not listed here. If you can fix one @@ -27,6 +27,9 @@ Severity: [ *] to [***] [ **] There are problems with signal handling when using LinuxThreads. +[ **] The RPC code is not 64 bit clean. This is getting slowly fixed + but expect incompatible changes on 64 bit platforms like Alpha. + [ *] The precision of the `sinhl' and/or `asinhl' function do not seem to be the best. diff --git a/ChangeLog b/ChangeLog index 5f25033..498b0a3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +1999-04-20 Andreas Jaeger + + * posix/wordexp.c (parse_param): Fix type of offset to allow it to + be used correctly as parameter for parse_dollars/parse_tilde. + 1999-04-19 Andreas Schwab * manual/conf.texi (Utility Limits): Remove duplicate description diff --git a/posix/wordexp.c b/posix/wordexp.c index aa5b94c..c43d608 100644 --- a/posix/wordexp.c +++ b/posix/wordexp.c @@ -1,5 +1,5 @@ /* POSIX.2 wordexp implementation. - Copyright (C) 1997, 1998 Free Software Foundation, Inc. + Copyright (C) 1997, 1998, 1999 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Tim Waugh . @@ -1446,7 +1446,7 @@ envsubst: expanded = w_newword (&exp_len, &exp_maxl); for (p = pattern; p && *p; p++) { - int offset; + size_t offset; switch (*p) { -- cgit v1.1