diff options
author | 2018-04-10 00:10:49 +0000 | |
---|---|---|
committer | 2018-04-10 00:10:49 +0000 | |
commit | 27a1722d34e0abcacc7464729dba1ebaf22341de (patch) | |
tree | 4c093d5e89ab59815557890d6b4a6591928bc990 /usr.bin/ssh/ssh-agent.c | |
parent | don't kill ssh-agent's listening socket entriely if we fail to accept a (diff) | |
download | wireguard-openbsd-27a1722d34e0abcacc7464729dba1ebaf22341de.tar.xz wireguard-openbsd-27a1722d34e0abcacc7464729dba1ebaf22341de.zip |
lots of typos in comments/docs. Patch from Karsten Weiss after checking
with codespell tool (https://github.com/lucasdemarchi/codespell)
Diffstat (limited to 'usr.bin/ssh/ssh-agent.c')
-rw-r--r-- | usr.bin/ssh/ssh-agent.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/ssh-agent.c b/usr.bin/ssh/ssh-agent.c index 55b1827b028..ffcdb8cd427 100644 --- a/usr.bin/ssh/ssh-agent.c +++ b/usr.bin/ssh/ssh-agent.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssh-agent.c,v 1.229 2018/04/09 23:54:49 djm Exp $ */ +/* $OpenBSD: ssh-agent.c,v 1.230 2018/04/10 00:10:49 djm Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -694,7 +694,7 @@ process_message(u_int socknum) debug("%s: socket %u (fd=%d) type %d", __func__, socknum, e->fd, type); - /* check wheter agent is locked */ + /* check whether agent is locked */ if (locked && type != SSH_AGENTC_UNLOCK) { sshbuf_reset(e->request); switch (type) { |