summaryrefslogtreecommitdiff
path: root/sshbuf-getput-basic.c
diff options
context:
space:
mode:
authordjm@openbsd.org <djm@openbsd.org>2017-06-01 04:51:58 +0000
committerDamien Miller <djm@mindrot.org>2017-06-01 14:55:23 +1000
commit4b2e2d3fd9dccff357e1e26ce9a5f2e103837a36 (patch)
treed5f88eb4c2ab8adf3dd14314d045e0c94abc3e06 /sshbuf-getput-basic.c
parent75b8af8de805c0694b37fcf80ce82783b2acc86f (diff)
upstream commit
fix casts re constness Upstream-ID: e38f2bac162b37dbaf784d349c8327a6626fa266
Diffstat (limited to 'sshbuf-getput-basic.c')
-rw-r--r--sshbuf-getput-basic.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sshbuf-getput-basic.c b/sshbuf-getput-basic.c
index 74c49be7c..50648258f 100644
--- a/sshbuf-getput-basic.c
+++ b/sshbuf-getput-basic.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: sshbuf-getput-basic.c,v 1.6 2016/06/16 11:00:17 dtucker Exp $ */ 1/* $OpenBSD: sshbuf-getput-basic.c,v 1.7 2017/06/01 04:51:58 djm Exp $ */
2/* 2/*
3 * Copyright (c) 2011 Damien Miller 3 * Copyright (c) 2011 Damien Miller
4 * 4 *
@@ -365,7 +365,7 @@ sshbuf_put_string(struct sshbuf *buf, const void *v, size_t len)
365int 365int
366sshbuf_put_cstring(struct sshbuf *buf, const char *v) 366sshbuf_put_cstring(struct sshbuf *buf, const char *v)
367{ 367{
368 return sshbuf_put_string(buf, (u_char *)v, v == NULL ? 0 : strlen(v)); 368 return sshbuf_put_string(buf, v, v == NULL ? 0 : strlen(v));
369} 369}
370 370
371int 371int