diff options
author | green <green@FreeBSD.org> | 2000-09-10 18:04:12 +0000 |
---|---|---|
committer | green <green@FreeBSD.org> | 2000-09-10 18:04:12 +0000 |
commit | 3c8715d5d7eb8c71443d92577f164167d6f1b236 (patch) | |
tree | 2eac8a8a20f1731396dcc95d5db79c3a5abbe466 /crypto | |
parent | bb24bb397b4bb1ed48d9f8e083b456e726fae914 (diff) | |
download | FreeBSD-src-3c8715d5d7eb8c71443d92577f164167d6f1b236.zip FreeBSD-src-3c8715d5d7eb8c71443d92577f164167d6f1b236.tar.gz |
Fix a few style oddities.
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/openssh/sshd.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/crypto/openssh/sshd.c b/crypto/openssh/sshd.c index 5d38e6a..dd872c6 100644 --- a/crypto/openssh/sshd.c +++ b/crypto/openssh/sshd.c @@ -169,16 +169,16 @@ int session_id2_len = 0; /* These are used to implement connections_per_period. */ struct ratelim_connection { - struct timeval connections_begin; - unsigned int connections_this_period; + struct timeval connections_begin; + unsigned int connections_this_period; } *ratelim_connections; static void ratelim_init(void) { - ratelim_connections = calloc(num_listen_socks, - sizeof(struct ratelim_connection)); - if (ratelim_connections == NULL) - fatal("calloc: %s", strerror(errno)); + ratelim_connections = calloc(num_listen_socks, + sizeof(struct ratelim_connection)); + if (ratelim_connections == NULL) + fatal("calloc: %s", strerror(errno)); } static __inline struct timeval |