about summary refs log tree commit diff
path: root/sunrpc/clnt_perr.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-01-21 05:18:41 +0000
committerUlrich Drepper <drepper@redhat.com>2000-01-21 05:18:41 +0000
commit0b9fbf003af00a2a22164333bbe709aa9abbcdc9 (patch)
tree756c272dc78bb25678664d433e2cbbd9a66d3b00 /sunrpc/clnt_perr.c
parent9861985fafa348a103f5812bae80a85ca8b6c5dd (diff)
downloadglibc-0b9fbf003af00a2a22164333bbe709aa9abbcdc9.tar.gz
glibc-0b9fbf003af00a2a22164333bbe709aa9abbcdc9.tar.xz
glibc-0b9fbf003af00a2a22164333bbe709aa9abbcdc9.zip
Update.
	* manual/getopt.texi (Using the getopt function): Fix description of
	return value for format string starting with '-' (PR libc/1551).
	Patch by Raúl Núñez de Arenas Coronado <dervishd@jazzfree.com>

	* sunrpc/clnt_perr.c (rpc_errlist): Fix index for RPC_PROGVERSMISMATCH.
	Patch by jens.moeller@westgeo.com (PR libc/1550).

	* locale/programs/ld-collate.c (struct element_t): Add wclast
	and compute it where necessary.
	(collate_output): Insert indirect references in the right order.
Diffstat (limited to 'sunrpc/clnt_perr.c')
-rw-r--r--sunrpc/clnt_perr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sunrpc/clnt_perr.c b/sunrpc/clnt_perr.c
index 7896499f82..ba95d07ce8 100644
--- a/sunrpc/clnt_perr.c
+++ b/sunrpc/clnt_perr.c
@@ -241,7 +241,7 @@ static const struct rpc_errtab rpc_errlist[] =
   { RPC_VERSMISMATCH, RPC_VERSMISMATCH_IDX },
   { RPC_AUTHERROR, RPC_AUTHERROR_IDX },
   { RPC_PROGUNAVAIL, RPC_PROGUNAVAIL_IDX },
-  { RPC_PROGVERSMISMATCH, RPC_PROGVERSMISMATCH },
+  { RPC_PROGVERSMISMATCH, RPC_PROGVERSMISMATCH_IDX },
   { RPC_PROCUNAVAIL, RPC_PROCUNAVAIL_IDX },
   { RPC_CANTDECODEARGS, RPC_CANTDECODEARGS_IDX },
   { RPC_SYSTEMERROR, RPC_SYSTEMERROR_IDX },