From: Niels Möller Date: Wed, 9 Oct 2002 19:30:13 +0000 (+0200) Subject: * dsa-verify.c (dsa_verify): Use const for the public key X-Git-Tag: nettle_1.7_release_20030311~269 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5ee81e7ebb5c6ccabf119eb4b7c6508bb8099d41;p=thirdparty%2Fnettle.git * dsa-verify.c (dsa_verify): Use const for the public key argument. Rev: src/nettle/dsa-verify.c:1.2 --- diff --git a/dsa-verify.c b/dsa-verify.c index ba73d344..43d76c77 100644 --- a/dsa-verify.c +++ b/dsa-verify.c @@ -34,7 +34,7 @@ #include int -dsa_verify(struct dsa_public_key *key, +dsa_verify(const struct dsa_public_key *key, struct sha1_ctx *hash, const struct dsa_signature *signature) {