summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordtucker@openbsd.org <dtucker@openbsd.org>2020-04-26 09:38:14 +0000
committerDamien Miller <djm@mindrot.org>2020-05-01 13:13:28 +1000
commitc9d10dbc0ccfb1c7568bbb784f7aeb7a0b5ded12 (patch)
tree6bda739e7aeffc540ba24ff357c887b610febac3
parent4d2c87b4d1bde019cdd0f00552fcf97dd8b39940 (diff)
upstream: Fix comment typo. Patch from mforney at mforney.org.
OpenBSD-Commit-ID: 3565f056003707a5e678e60e03f7a3efd0464a2b
-rw-r--r--sshbuf.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sshbuf.h b/sshbuf.h
index 78e322647..94392c8be 100644
--- a/sshbuf.h
+++ b/sshbuf.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: sshbuf.h,v 1.20 2020/03/13 03:17:07 djm Exp $ */ 1/* $OpenBSD: sshbuf.h,v 1.21 2020/04/26 09:38:14 dtucker Exp $ */
2/* 2/*
3 * Copyright (c) 2011 Damien Miller 3 * Copyright (c) 2011 Damien Miller
4 * 4 *
@@ -140,7 +140,7 @@ int sshbuf_allocate(struct sshbuf *buf, size_t len);
140/* 140/*
141 * Reserve len bytes in buf. 141 * Reserve len bytes in buf.
142 * Returns 0 on success and a pointer to the first reserved byte via the 142 * Returns 0 on success and a pointer to the first reserved byte via the
143 * optional dpp parameter or a negative * SSH_ERR_* error code on failure. 143 * optional dpp parameter or a negative SSH_ERR_* error code on failure.
144 */ 144 */
145int sshbuf_reserve(struct sshbuf *buf, size_t len, u_char **dpp); 145int sshbuf_reserve(struct sshbuf *buf, size_t len, u_char **dpp);
146 146