Connect to correct ident port (forgot an htons).

This commit is contained in:
Jilles Tjoelker 2008-04-03 20:46:20 +02:00
parent ab3e565d6c
commit 72745c2b88
1 changed files with 2 additions and 2 deletions

View File

@ -316,10 +316,10 @@ start_auth_query(struct AuthRequest *auth)
#ifdef IPV6
if(localaddr.ss_family == AF_INET6)
{
((struct sockaddr_in6 *)&destaddr)->sin6_port = 113;
((struct sockaddr_in6 *)&destaddr)->sin6_port = htons(113);
} else
#endif
((struct sockaddr_in *)&destaddr)->sin_port = 113;
((struct sockaddr_in *)&destaddr)->sin_port = htons(113);
auth->F = F;
SetAuthConnect(auth);