From: djm@openbsd.org Date: Wed, 11 Aug 2021 05:21:32 +0000 (+0000) Subject: upstream: oops, missed one more %p X-Git-Tag: V_8_7_P1~23 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=750c1a45ba4e8ad63793d49418a0780e77947b9b;p=thirdparty%2Fopenssh-portable.git upstream: oops, missed one more %p OpenBSD-Commit-ID: e7e62818d1564cc5cd9086eaf7a51cbd1a9701eb --- diff --git a/sshbuf-misc.c b/sshbuf-misc.c index afaab8d61..80714d1f3 100644 --- a/sshbuf-misc.c +++ b/sshbuf-misc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sshbuf-misc.c,v 1.16 2020/06/22 05:54:10 djm Exp $ */ +/* $OpenBSD: sshbuf-misc.c,v 1.17 2021/08/11 05:21:32 djm Exp $ */ /* * Copyright (c) 2011 Damien Miller * @@ -65,7 +65,7 @@ sshbuf_dump_data(const void *s, size_t len, FILE *f) void sshbuf_dump(const struct sshbuf *buf, FILE *f) { - fprintf(f, "buffer %p len = %zu\n", buf, sshbuf_len(buf)); + fprintf(f, "buffer len = %zu\n", sshbuf_len(buf)); sshbuf_dump_data(sshbuf_ptr(buf), sshbuf_len(buf), f); }