diff options
author | 2003-11-10 16:23:41 +0000 | |
---|---|---|
committer | 2003-11-10 16:23:41 +0000 | |
commit | 69c754671be6c2948a53b5b7b200caf1cc4f6f11 (patch) | |
tree | 589f35e40471b718fbcb98707505d342580c3af2 /usr.bin/ssh/bufaux.h | |
parent | Fine-grained handling of errors, pkg already installed is not an error. (diff) | |
download | wireguard-openbsd-69c754671be6c2948a53b5b7b200caf1cc4f6f11.tar.xz wireguard-openbsd-69c754671be6c2948a53b5b7b200caf1cc4f6f11.zip |
constify. ok markus@ & djm@
Diffstat (limited to 'usr.bin/ssh/bufaux.h')
-rw-r--r-- | usr.bin/ssh/bufaux.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/bufaux.h b/usr.bin/ssh/bufaux.h index 93555357942..61c72e35379 100644 --- a/usr.bin/ssh/bufaux.h +++ b/usr.bin/ssh/bufaux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: bufaux.h,v 1.18 2002/04/20 09:14:58 markus Exp $ */ +/* $OpenBSD: bufaux.h,v 1.19 2003/11/10 16:23:41 jakob Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> @@ -18,8 +18,8 @@ #include "buffer.h" #include <openssl/bn.h> -void buffer_put_bignum(Buffer *, BIGNUM *); -void buffer_put_bignum2(Buffer *, BIGNUM *); +void buffer_put_bignum(Buffer *, const BIGNUM *); +void buffer_put_bignum2(Buffer *, const BIGNUM *); void buffer_get_bignum(Buffer *, BIGNUM *); void buffer_get_bignum2(Buffer *, BIGNUM *); |