summaryrefslogtreecommitdiff
path: root/sshd.c
diff options
context:
space:
mode:
authordjm@openbsd.org <djm@openbsd.org>2020-03-13 03:17:07 +0000
committerDamien Miller <djm@mindrot.org>2020-03-14 19:39:09 +1100
commitd081f017c20a3564255873ed99fd7d024cac540f (patch)
tree961bd04b64c3d52803740987a6ab713e3ca6d06b /sshd.c
parentc084a2d040f160bc2b83f13297e3e3ca3f5dbac6 (diff)
upstream: spelling errors in comments; no code change from
OpenBSD-Commit-ID: 166ea64f6d84f7bac5636dbd38968592cb5eb924
Diffstat (limited to 'sshd.c')
-rw-r--r--sshd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sshd.c b/sshd.c
index 60b2aaf73..c85df4da9 100644
--- a/sshd.c
+++ b/sshd.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: sshd.c,v 1.549 2020/01/31 23:13:04 djm Exp $ */ 1/* $OpenBSD: sshd.c,v 1.550 2020/03/13 03:17:07 djm Exp $ */
2/* 2/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -1110,7 +1110,7 @@ server_accept_loop(int *sock_in, int *sock_out, int *newsock, int *config_s)
1110 for (i = 0; i < num_listen_socks; i++) 1110 for (i = 0; i < num_listen_socks; i++)
1111 if (listen_socks[i] > maxfd) 1111 if (listen_socks[i] > maxfd)
1112 maxfd = listen_socks[i]; 1112 maxfd = listen_socks[i];
1113 /* pipes connected to unauthenticated childs */ 1113 /* pipes connected to unauthenticated child sshd processes */
1114 startup_pipes = xcalloc(options.max_startups, sizeof(int)); 1114 startup_pipes = xcalloc(options.max_startups, sizeof(int));
1115 startup_flags = xcalloc(options.max_startups, sizeof(int)); 1115 startup_flags = xcalloc(options.max_startups, sizeof(int));
1116 for (i = 0; i < options.max_startups; i++) 1116 for (i = 0; i < options.max_startups; i++)