1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00
* 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

@ -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);