* inet/rcmd.c (rcmd_af): __ss_family is now ss_family.
	(rresvport_af): Likewise.
This commit is contained in:
Ulrich Drepper 2001-01-27 21:54:00 +00:00
parent 6f0ea37903
commit d1ce5f2a8c
2 changed files with 4 additions and 2 deletions

View File

@ -17,6 +17,8 @@
* sysdeps/unix/sysv/linux/alpha/bits/socket.h: New file.
* sysdeps/unix/sysv/linux/ia64/bits/socket.h: New file.
* sysdeps/unix/sysv/linux/sparc/sparc64/bits/socket.h: New file.
* inet/rcmd.c (rcmd_af): __ss_family is now ss_family.
(rresvport_af): Likewise.
* conform/data/sys/shm.h-data: SHMLBA is not required to by a constant.
* conform/conformtest.pl: Implement handling of symbol.

View File

@ -235,7 +235,7 @@ rcmd_af(ahost, rport, locuser, remuser, cmd, fd2p, af)
goto bad;
}
s3 = accept(s2, (struct sockaddr *)&from, &len);
switch (from.__ss_family) {
switch (from.ss_family) {
case AF_INET:
rport = ntohs(((struct sockaddr_in *)&from)->sin_port);
break;
@ -335,7 +335,7 @@ rresvport_af(alport, family)
#ifdef SALEN
ss.__ss_len = len;
#endif
ss.__ss_family = family;
ss.ss_family = family;
for (;;) {
*sport = htons((uint16_t) *alport);