diff options
author | djm@openbsd.org <djm@openbsd.org> | 2021-08-11 07:21:32 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2021-08-11 10:37:30 +0200 |
commit | 750c1a45ba4e8ad63793d49418a0780e77947b9b (patch) | |
tree | dda089ea80ce2f9b1a18c2f153add9fed31788f2 /sshbuf-misc.c | |
parent | upstream: remove a bunch of %p in format strings; leftovers of (diff) | |
download | openssh-750c1a45ba4e8ad63793d49418a0780e77947b9b.tar.xz openssh-750c1a45ba4e8ad63793d49418a0780e77947b9b.zip |
upstream: oops, missed one more %p
OpenBSD-Commit-ID: e7e62818d1564cc5cd9086eaf7a51cbd1a9701eb
Diffstat (limited to 'sshbuf-misc.c')
-rw-r--r-- | sshbuf-misc.c | 4 |
1 files changed, 2 insertions, 2 deletions
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); } |