From 016955e82a2c04eac77ee4090c27cacd7a61276c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Love=20H=C3=B6rnquist=20=C3=85strand?= Date: Thu, 19 Oct 2006 11:33:01 +0000 Subject: [PATCH] remove stray ; git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@18595 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/des/rsa.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/lib/des/rsa.c b/lib/des/rsa.c index 8cb405678..29f143b52 100644 --- a/lib/des/rsa.c +++ b/lib/des/rsa.c @@ -209,10 +209,10 @@ name(int flen,const unsigned char* f, unsigned char* t, RSA* r, int p){\ return body; \ } -RSAFUNC(RSA_public_encrypt, (r)->meth->rsa_pub_enc(flen, f, t, r, p)); -RSAFUNC(RSA_public_decrypt, (r)->meth->rsa_pub_dec(flen, f, t, r, p)); -RSAFUNC(RSA_private_encrypt, (r)->meth->rsa_priv_enc(flen, f, t, r, p)); -RSAFUNC(RSA_private_decrypt, (r)->meth->rsa_priv_dec(flen, f, t, r, p)); +RSAFUNC(RSA_public_encrypt, (r)->meth->rsa_pub_enc(flen, f, t, r, p)) +RSAFUNC(RSA_public_decrypt, (r)->meth->rsa_pub_dec(flen, f, t, r, p)) +RSAFUNC(RSA_private_encrypt, (r)->meth->rsa_priv_enc(flen, f, t, r, p)) +RSAFUNC(RSA_private_decrypt, (r)->meth->rsa_priv_dec(flen, f, t, r, p)) /* XXX */ int @@ -236,10 +236,10 @@ RSA_verify(int type, const unsigned char *from, unsigned int flen, * support. */ -static RSAFUNC(null_rsa_public_encrypt, -1); -static RSAFUNC(null_rsa_public_decrypt, -1); -static RSAFUNC(null_rsa_private_encrypt, -1); -static RSAFUNC(null_rsa_private_decrypt, -1); +static RSAFUNC(null_rsa_public_encrypt, -1) +static RSAFUNC(null_rsa_public_decrypt, -1) +static RSAFUNC(null_rsa_private_encrypt, -1) +static RSAFUNC(null_rsa_private_decrypt, -1) static int null_rsa_init(RSA *rsa)