diff options
| author | Brian Feldman <green@FreeBSD.org> | 2000-02-25 05:22:14 +0000 |
|---|---|---|
| committer | Brian Feldman <green@FreeBSD.org> | 2000-02-25 05:22:14 +0000 |
| commit | 8261034302887f4881dff0801d3ad535d52c38e5 (patch) | |
| tree | c51b309814e34572d782157a5585bcbf1856324c /crypto | |
| parent | f021cab12ec2084b5522a9822d3ae23392788ad1 (diff) | |
Notes
Diffstat (limited to 'crypto')
| -rw-r--r-- | crypto/openssh/sshd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/openssh/sshd.c b/crypto/openssh/sshd.c index 03ccbf74681b..1dfea8820090 100644 --- a/crypto/openssh/sshd.c +++ b/crypto/openssh/sshd.c @@ -149,7 +149,7 @@ struct magic_connection { const size_t MAGIC_CONNECTIONS_SIZE = 1; static __inline int -magic_hash(struct sockaddr *sa) { +magic_hash(struct sockaddr_storage *sa) { return 0; } @@ -723,7 +723,7 @@ main(int ac, char **av) struct magic_connection *mc; (void)gettimeofday(&connections_end, NULL); - mc = &magic_connections[magic_hash(ai->ai_addr)]; + mc = &magic_connections[magic_hash(&from)]; diff = timevaldiff(&mc->connections_begin, &connections_end); if (diff.tv_sec >= options.connections_period) { /* |
