summaryrefslogtreecommitdiff
path: root/sshbuf.h
diff options
context:
space:
mode:
Diffstat (limited to 'sshbuf.h')
-rw-r--r--sshbuf.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sshbuf.h b/sshbuf.h
index ea40e1677..033feb072 100644
--- a/sshbuf.h
+++ b/sshbuf.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: sshbuf.h,v 1.16 2019/07/16 13:18:39 djm Exp $ */ 1/* $OpenBSD: sshbuf.h,v 1.17 2019/07/30 05:04:49 djm Exp $ */
2/* 2/*
3 * Copyright (c) 2011 Damien Miller 3 * Copyright (c) 2011 Damien Miller
4 * 4 *
@@ -270,7 +270,7 @@ int sshbuf_b64tod(struct sshbuf *buf, const char *b64);
270 * all. 270 * all.
271 */ 271 */
272int sshbuf_cmp(const struct sshbuf *b, size_t offset, 272int sshbuf_cmp(const struct sshbuf *b, size_t offset,
273 const u_char *s, size_t len); 273 const void *s, size_t len);
274 274
275/* 275/*
276 * Searches the buffer for the specified string. Returns 0 on success 276 * Searches the buffer for the specified string. Returns 0 on success
@@ -282,7 +282,7 @@ int sshbuf_cmp(const struct sshbuf *b, size_t offset,
282 */ 282 */
283int 283int
284sshbuf_find(const struct sshbuf *b, size_t start_offset, 284sshbuf_find(const struct sshbuf *b, size_t start_offset,
285 const u_char *s, size_t len, size_t *offsetp); 285 const void *s, size_t len, size_t *offsetp);
286 286
287/* 287/*
288 * Duplicate the contents of a buffer to a string (caller to free). 288 * Duplicate the contents of a buffer to a string (caller to free).