artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
efa52ff
)
oops, missed one more %p
author
djm
<djm@openbsd.org>
Wed, 11 Aug 2021 05:21:32 +0000
(
05:21
+0000)
committer
djm
<djm@openbsd.org>
Wed, 11 Aug 2021 05:21:32 +0000
(
05:21
+0000)
usr.bin/ssh/sshbuf-misc.c
patch
|
blob
|
history
diff --git
a/usr.bin/ssh/sshbuf-misc.c
b/usr.bin/ssh/sshbuf-misc.c
index
4255c14
..
38567b3
100644
(file)
--- a/
usr.bin/ssh/sshbuf-misc.c
+++ b/
usr.bin/ssh/sshbuf-misc.c
@@
-1,4
+1,4
@@
-/* $OpenBSD: sshbuf-misc.c,v 1.1
6 2020/06/22 05:54:10
djm Exp $ */
+/* $OpenBSD: sshbuf-misc.c,v 1.1
7 2021/08/11 05:21:32
djm Exp $ */
/*
* Copyright (c) 2011 Damien Miller
*
@@
-61,7
+61,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);
}