[openssh-commits] [openssh] 01/10: upstream commit
git+noreply at mindrot.org
git+noreply at mindrot.org
Tue Jan 20 09:50:49 EST 2015
This is an automated email from the git hooks/post-receive script.
djm pushed a commit to branch master
in repository openssh.
commit 4e62cc68ce4ba20245d208b252e74e91d3785b74
Author: djm at openbsd.org <djm at openbsd.org>
Date: Mon Jan 19 17:35:48 2015 +0000
upstream commit
fix format strings in (disabled) debugging
---
krl.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/krl.c b/krl.c
index 721cabd..acfb227 100644
--- a/krl.c
+++ b/krl.c
@@ -14,7 +14,7 @@
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-/* $OpenBSD: krl.c,v 1.27 2015/01/18 14:01:00 deraadt Exp $ */
+/* $OpenBSD: krl.c,v 1.28 2015/01/19 17:35:48 djm Exp $ */
#include "includes.h"
@@ -736,7 +736,7 @@ ssh_krl_to_blob(struct ssh_krl *krl, struct sshbuf *buf,
/* Finally, output sections for revocations by public key/hash */
sshbuf_reset(sect);
RB_FOREACH(rb, revoked_blob_tree, &krl->revoked_keys) {
- KRL_DBG(("%s: key len %u ", __func__, rb->len));
+ KRL_DBG(("%s: key len %zu ", __func__, rb->len));
if ((r = sshbuf_put_string(sect, rb->blob, rb->len)) != 0)
goto out;
}
@@ -747,7 +747,7 @@ ssh_krl_to_blob(struct ssh_krl *krl, struct sshbuf *buf,
}
sshbuf_reset(sect);
RB_FOREACH(rb, revoked_blob_tree, &krl->revoked_sha1s) {
- KRL_DBG(("%s: hash len %u ", __func__, rb->len));
+ KRL_DBG(("%s: hash len %zu ", __func__, rb->len));
if ((r = sshbuf_put_string(sect, rb->blob, rb->len)) != 0)
goto out;
}
@@ -772,7 +772,7 @@ ssh_krl_to_blob(struct ssh_krl *krl, struct sshbuf *buf,
if ((r = sshkey_sign(sign_keys[i], &sblob, &slen,
sshbuf_ptr(buf), sshbuf_len(buf), 0)) == -1)
goto out;
- KRL_DBG(("%s: signature sig len %u", __func__, slen));
+ KRL_DBG(("%s: signature sig len %zu", __func__, slen));
if ((r = sshbuf_put_string(buf, sblob, slen)) != 0)
goto out;
}
--
To stop receiving notification emails like this one, please contact
djm at mindrot.org.
More information about the openssh-commits
mailing list