[openssh-commits] [openssh] 02/02: upstream: oops, missed one more %p
git+noreply at mindrot.org
git+noreply at mindrot.org
Wed Aug 11 18:37:39 AEST 2021
This is an automated email from the git hooks/post-receive script.
djm pushed a commit to branch master
in repository openssh.
commit 750c1a45ba4e8ad63793d49418a0780e77947b9b
Author: djm at openbsd.org <djm at openbsd.org>
Date: Wed Aug 11 05:21:32 2021 +0000
upstream: oops, missed one more %p
OpenBSD-Commit-ID: e7e62818d1564cc5cd9086eaf7a51cbd1a9701eb
---
sshbuf-misc.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sshbuf-misc.c b/sshbuf-misc.c
index afaab8d6..80714d1f 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);
}
--
To stop receiving notification emails like this one, please contact
djm at mindrot.org.
More information about the openssh-commits
mailing list