summaryrefslogtreecommitdiff
path: root/usr.bin/ssh
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@cvs.openbsd.org>2020-04-26 09:38:15 +0000
committerDarren Tucker <dtucker@cvs.openbsd.org>2020-04-26 09:38:15 +0000
commite9473024fb090b11ddc6f113dd52e665149cb366 (patch)
tree6f3960b28537401ee26093ffdfa7bf7fd55a79a0 /usr.bin/ssh
parent062072d374b639e0ad3de75395ca3c834b0282a4 (diff)
Fix comment typo. Patch from mforney at mforney.org.
Diffstat (limited to 'usr.bin/ssh')
-rw-r--r--usr.bin/ssh/sshbuf.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/sshbuf.h b/usr.bin/ssh/sshbuf.h
index caa3747ddc1..3af1092a129 100644
--- a/usr.bin/ssh/sshbuf.h
+++ b/usr.bin/ssh/sshbuf.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: sshbuf.h,v 1.20 2020/03/13 03:17:07 djm Exp $ */
+/* $OpenBSD: sshbuf.h,v 1.21 2020/04/26 09:38:14 dtucker Exp $ */
/*
* Copyright (c) 2011 Damien Miller
*
@@ -145,7 +145,7 @@ int sshbuf_allocate(struct sshbuf *buf, size_t len);
/*
* Reserve len bytes in buf.
* Returns 0 on success and a pointer to the first reserved byte via the
- * optional dpp parameter or a negative * SSH_ERR_* error code on failure.
+ * optional dpp parameter or a negative SSH_ERR_* error code on failure.
*/
int sshbuf_reserve(struct sshbuf *buf, size_t len, u_char **dpp);