summaryrefslogtreecommitdiffstats
path: root/bufaux.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2006-03-26 14:28:50 +1100
committerDamien Miller <djm@mindrot.org>2006-03-26 14:28:50 +1100
commita0fdce9a47dfa572fde97e1a2ee9b33efb9fd549 (patch)
tree39efc92f6b2e6729a839ecc89b41f22a809f08b0 /bufaux.c
parent08d61505d7229aaa5484439b2f2e98add3052afe (diff)
- deraadt@cvs.openbsd.org 2006/03/25 18:56:55
[bufaux.c channels.c packet.c] remove (char *) casts to a function that accepts void * for the arg
Diffstat (limited to 'bufaux.c')
-rw-r--r--bufaux.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bufaux.c b/bufaux.c
index b7c9f2ec..21a2badf 100644
--- a/bufaux.c
+++ b/bufaux.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: bufaux.c,v 1.39 2006/03/25 13:17:01 djm Exp $ */
+/* $OpenBSD: bufaux.c,v 1.40 2006/03/25 18:56:54 deraadt Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -71,7 +71,7 @@ buffer_put_bignum_ret(Buffer *buffer, const BIGNUM *value)
PUT_16BIT(msg, bits);
buffer_append(buffer, msg, 2);
/* Store the binary data. */
- buffer_append(buffer, (char *)buf, oi);
+ buffer_append(buffer, buf, oi);
memset(buf, 0, bin_size);
xfree(buf);