[openssh-commits] [openssh] 07/09: upstream commit
git+noreply at mindrot.org
git+noreply at mindrot.org
Thu Jun 1 15:27:09 AEST 2017
This is an automated email from the git hooks/post-receive script.
djm pushed a commit to branch master
in repository openssh.
commit 4b2e2d3fd9dccff357e1e26ce9a5f2e103837a36
Author: djm at openbsd.org <djm at openbsd.org>
Date: Thu Jun 1 04:51:58 2017 +0000
upstream commit
fix casts re constness
Upstream-ID: e38f2bac162b37dbaf784d349c8327a6626fa266
---
bitmap.c | 2 +-
sshbuf-getput-basic.c | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/bitmap.c b/bitmap.c
index 71f87ec5..e8320d8c 100644
--- a/bitmap.c
+++ b/bitmap.c
@@ -189,7 +189,7 @@ bitmap_from_string(struct bitmap *b, const void *p, size_t l)
{
int r;
size_t i, offset, shift;
- u_char *s = (u_char *)p;
+ const u_char *s = (const u_char *)p;
if (l > BITMAP_MAX / 8)
return -1;
diff --git a/sshbuf-getput-basic.c b/sshbuf-getput-basic.c
index 74c49be7..50648258 100644
--- a/sshbuf-getput-basic.c
+++ b/sshbuf-getput-basic.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sshbuf-getput-basic.c,v 1.6 2016/06/16 11:00:17 dtucker Exp $ */
+/* $OpenBSD: sshbuf-getput-basic.c,v 1.7 2017/06/01 04:51:58 djm Exp $ */
/*
* Copyright (c) 2011 Damien Miller
*
@@ -365,7 +365,7 @@ sshbuf_put_string(struct sshbuf *buf, const void *v, size_t len)
int
sshbuf_put_cstring(struct sshbuf *buf, const char *v)
{
- return sshbuf_put_string(buf, (u_char *)v, v == NULL ? 0 : strlen(v));
+ return sshbuf_put_string(buf, v, v == NULL ? 0 : strlen(v));
}
int
--
To stop receiving notification emails like this one, please contact
djm at mindrot.org.
More information about the openssh-commits
mailing list