summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorTobias Stoeckmann <tobias@cvs.openbsd.org>2024-08-14 15:35:24 +0000
committerTobias Stoeckmann <tobias@cvs.openbsd.org>2024-08-14 15:35:24 +0000
commit2fbf85a72ef9d2e327eb4a42753ee178cb6eabf5 (patch)
treeed53600668d542a33fd0e43daba9f4d4f1c3739a /usr.bin
parent399b8fc882d16d221c3e1b13a571afa001e2c27c (diff)
Fix typo in comment
Spotted with Benny Baumann (BenBE at geshi dot org). ok djm@
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/ssh/sshbuf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/sshbuf.c b/usr.bin/ssh/sshbuf.c
index b5cbfda846d..f76a2f37364 100644
--- a/usr.bin/ssh/sshbuf.c
+++ b/usr.bin/ssh/sshbuf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sshbuf.c,v 1.19 2022/12/02 04:40:27 djm Exp $ */
+/* $OpenBSD: sshbuf.c,v 1.20 2024/08/14 15:35:23 tobias Exp $ */
/*
* Copyright (c) 2011 Damien Miller
*
@@ -177,7 +177,7 @@ sshbuf_free(struct sshbuf *buf)
return;
/*
- * If we are a child, the free our parent to decrement its reference
+ * If we are a child, then free our parent to decrement its reference
* count and possibly free it.
*/
sshbuf_free(buf->parent);