From: tobias Date: Wed, 14 Aug 2024 15:35:23 +0000 (+0000) Subject: Fix typo in comment X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=52a90c04cb2389ceea7057c745eb68bb9b36b191;p=openbsd Fix typo in comment Spotted with Benny Baumann (BenBE at geshi dot org). ok djm@ --- 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);