diff options
-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); |