mirror of
https://sourceware.org/git/glibc.git
synced 2025-12-24 17:51:17 +03:00
Update.
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:
@@ -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')
|
||||
|
||||
Reference in New Issue
Block a user