From: tobias@openbsd.org Date: Wed, 14 Aug 2024 15:35:23 +0000 (+0000) Subject: upstream: Fix typo in comment X-Git-Tag: V_9_9_P1~91 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1ff6907ec26dac6ac59fe9fe232899a63b4c14d8;p=thirdparty%2Fopenssh-portable.git upstream: Fix typo in comment Spotted with Benny Baumann (BenBE at geshi dot org). ok djm@ OpenBSD-Commit-ID: 829160ac8ef3ad3409695ce3a3ade835061cae57 --- diff --git a/sshbuf.c b/sshbuf.c index d7f4e4ab6..8e97355fa 100644 --- a/sshbuf.c +++ b/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 * @@ -179,7 +179,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);