1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-12-24 17:51:17 +03:00
Remove incompatible IPv6 extension of RPC.
	* sunrpc/Makefile: Undo changes.
	* sunrpc/rpc_main.c: Likewise.
	* sunrpc/rpc/clnt.h: Likewise.
	* sunrpc/rpc/svc.h: Likewise.
	* sunrpc/bindrsvprt6.c: Removed.
	* sunrpc/clnt_tcp6.c: Removed.
	* sunrpc/clnt_udp6.c: Removed.
	* sunrpc/svc_tcp6.c: Removed.
	* sunrpc/svc_udp6.c: Removed.

	* intl/libintl.h: Don't use __attribute_format_arg__ for gettext,
	dgettext, and dcgettetxt.

	* intl/locale.alias: Update japanese aliases.
This commit is contained in:
Ulrich Drepper
2000-08-02 07:01:41 +00:00
parent ca8d5a5f3d
commit be18eced55
14 changed files with 26 additions and 2173 deletions

View File

@@ -87,7 +87,7 @@ static char *pathbuf;
static int cpp_pid;
static const char *allv[] =
{
"rpcgen", "-s", "udp", "-s", "tcp", "-s", "udp6", "-s", "tcp6"
"rpcgen", "-s", "udp", "-s", "tcp"
};
static int allc = sizeof (allv) / sizeof (allv[0]);
static const char *allnv[] =
@@ -437,8 +437,6 @@ static const char *valid_ti_nettypes[] =
"udp",
"tcp",
"raw",
"udp6",
"tcp6",
NULL
};
@@ -447,8 +445,6 @@ static const char *valid_i_nettypes[] =
{
"udp",
"tcp",
"udp6",
"tcp6",
NULL
};
@@ -1306,9 +1302,7 @@ parseargs (int argc, const char *argv[], struct commandline *cmd)
if (c == 's')
{
if (!streq (argv[i], "udp") &&
!streq (argv[i], "tcp") &&
!streq (argv[i], "udp6") &&
!streq (argv[i], "tcp6"))
!streq (argv[i], "tcp"))
return 0;
}
else if (c == 'o')