From a5b7bf0e62e88494d82f7ca6474b6b8b669c1e98 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Mon, 13 May 1996 22:01:00 +0000 Subject: * configure.in (--with-fp): Note in help string that it's the default. * locale/programs/ld-ctype.c (struct locale_ctype_t): Use u_int32_t instead of unsigned int for map_collection_max and map_collection_act. * stdio-common/vfprintf.c [USE_IN_LIBIO] (flockfile, funlockfile): Macros removed; they are in . * stdio-common/vfscanf.c: Likewise. `-include' to not complain before they exist. --- string/envz.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'string') diff --git a/string/envz.c b/string/envz.c index e1487043e3..03af3d49ad 100644 --- a/string/envz.c +++ b/string/envz.c @@ -89,17 +89,17 @@ envz_remove (char **envz, size_t *envz_len, const char *name) because when merging with another envz, the null entry can override an entry in the other one. Null entries can be removed with envz_strip (). */ error_t -envz_add (char **envz, unsigned *envz_len, const char *name, const char *value) +envz_add (char **envz, size_t *envz_len, const char *name, const char *value) { envz_remove (envz, envz_len, name); if (value) /* Add the new value, if there is one. */ { - unsigned name_len = strlen (name); - unsigned value_len = strlen (value); - unsigned old_envz_len = *envz_len; - unsigned new_envz_len = old_envz_len + name_len + 1 + value_len + 1; + size_t name_len = strlen (name); + size_t value_len = strlen (value); + size_t old_envz_len = *envz_len; + size_t new_envz_len = old_envz_len + name_len + 1 + value_len + 1; char *new_envz = realloc (*envz, new_envz_len); if (new_envz) @@ -126,7 +126,7 @@ envz_add (char **envz, unsigned *envz_len, const char *name, const char *value) OVERRIDE is true, then values in ENVZ2 will supercede those with the same name in ENV, otherwise not. */ error_t -envz_merge (char **envz, unsigned *envz_len, const char *envz2, +envz_merge (char **envz, size_t *envz_len, const char *envz2, size_t envz2_len, int override) { error_t err = 0; @@ -153,13 +153,13 @@ envz_merge (char **envz, unsigned *envz_len, const char *envz2, /* Remove null entries. */ void -envz_strip (char **envz, unsigned *envz_len) +envz_strip (char **envz, size_t *envz_len) { char *entry = *envz; - unsigned left = *envz_len; + size_t left = *envz_len; while (left) { - unsigned entry_len = strlen (entry) + 1; + size_t entry_len = strlen (entry) + 1; left -= entry_len; if (! index (entry, SEP)) /* Null entry. */ -- cgit v1.2.3