diff options
author | mmcc@openbsd.org <mmcc@openbsd.org> | 2015-12-10 07:01:35 +0000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2015-12-11 13:23:13 +1100 |
commit | 8e56dd46cb37879c73bce2d6032cf5e7f82d5a71 (patch) | |
tree | 27f9a56bb4b0180e6259c5150c720adc8a37dcea /sshbuf.h | |
parent | 6262a0522ddc2c0f2e9358dcb68d59b46e9c533e (diff) |
upstream commit
Fix a couple "the the" typos. ok dtucker@
Upstream-ID: ec364c5af32031f013001fd28d1bd3dfacfe9a72
Diffstat (limited to 'sshbuf.h')
-rw-r--r-- | sshbuf.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: sshbuf.h,v 1.5 2015/11/11 04:56:39 djm Exp $ */ | 1 | /* $OpenBSD: sshbuf.h,v 1.6 2015/12/10 07:01:35 mmcc Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2011 Damien Miller | 3 | * Copyright (c) 2011 Damien Miller |
4 | * | 4 | * |
@@ -120,12 +120,12 @@ size_t sshbuf_len(const struct sshbuf *buf); | |||
120 | size_t sshbuf_avail(const struct sshbuf *buf); | 120 | size_t sshbuf_avail(const struct sshbuf *buf); |
121 | 121 | ||
122 | /* | 122 | /* |
123 | * Returns a read-only pointer to the start of the the data in buf | 123 | * Returns a read-only pointer to the start of the data in buf |
124 | */ | 124 | */ |
125 | const u_char *sshbuf_ptr(const struct sshbuf *buf); | 125 | const u_char *sshbuf_ptr(const struct sshbuf *buf); |
126 | 126 | ||
127 | /* | 127 | /* |
128 | * Returns a mutable pointer to the start of the the data in buf, or | 128 | * Returns a mutable pointer to the start of the data in buf, or |
129 | * NULL if the buffer is read-only. | 129 | * NULL if the buffer is read-only. |
130 | */ | 130 | */ |
131 | u_char *sshbuf_mutable_ptr(const struct sshbuf *buf); | 131 | u_char *sshbuf_mutable_ptr(const struct sshbuf *buf); |