=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/sshbuf.h,v retrieving revision 1.16 retrieving revision 1.17 diff -u -r1.16 -r1.17 --- src/usr.bin/ssh/sshbuf.h 2019/07/16 13:18:39 1.16 +++ src/usr.bin/ssh/sshbuf.h 2019/07/30 05:04:49 1.17 @@ -1,4 +1,4 @@ -/* $OpenBSD: sshbuf.h,v 1.16 2019/07/16 13:18:39 djm Exp $ */ +/* $OpenBSD: sshbuf.h,v 1.17 2019/07/30 05:04:49 djm Exp $ */ /* * Copyright (c) 2011 Damien Miller * @@ -262,7 +262,7 @@ * all. */ int sshbuf_cmp(const struct sshbuf *b, size_t offset, - const u_char *s, size_t len); + const void *s, size_t len); /* * Searches the buffer for the specified string. Returns 0 on success @@ -274,7 +274,7 @@ */ int sshbuf_find(const struct sshbuf *b, size_t start_offset, - const u_char *s, size_t len, size_t *offsetp); + const void *s, size_t len, size_t *offsetp); /* * Duplicate the contents of a buffer to a string (caller to free).