add missing ;

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@19710 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2007-01-04 22:35:11 +00:00
parent 49a10418ba
commit 9656c41201

View File

@@ -388,7 +388,7 @@ i2d_RSAPrivateKey(RSA *rsa, unsigned char **pp)
memset(&data, 0, sizeof(data));
ret = bn2heim_int(rsa->n, &data.modulus)
ret = bn2heim_int(rsa->n, &data.modulus);
ret |= bn2heim_int(rsa->e, &data.publicExponent);
ret |= bn2heim_int(rsa->d, &data.privateExponent);
ret |= bn2heim_int(rsa->p, &data.prime1);