diff options
author | Bodo Möller <bodo@openssl.org> | 1999-05-16 14:26:16 +0200 |
---|---|---|
committer | Bodo Möller <bodo@openssl.org> | 1999-05-16 14:26:16 +0200 |
commit | edf0bfb52b46bb9c8bf44e9c486be60c7087618c (patch) | |
tree | 6ad2135e6ba0e639b8938729fd55696605913011 /crypto/des/fcrypt.c | |
parent | Added a comment pointing out the behaviour of "openssl x509 -conf ...", (diff) | |
download | openssl-edf0bfb52b46bb9c8bf44e9c486be60c7087618c.tar.xz openssl-edf0bfb52b46bb9c8bf44e9c486be60c7087618c.zip |
Change type of various DES function arguments from des_cblock
(meaning pointer to char) to des_cblock * (meaning pointer to
array with 8 char elements), which allows the compiler to
do more typechecking. (The changed argument types were of type
des_cblock * back in SSLeay, and a lot of ugly casts were
used then to turn them into pointers to elements; but it can be
done without those casts.)
Introduce new type const_des_cblock -- before, the pointers rather
than the elements pointed to were declared const, and for
some reason gcc did not complain about this (but some other
compilers did).
Diffstat (limited to 'crypto/des/fcrypt.c')
-rw-r--r-- | crypto/des/fcrypt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/des/fcrypt.c b/crypto/des/fcrypt.c index db27108a32..db2454114f 100644 --- a/crypto/des/fcrypt.c +++ b/crypto/des/fcrypt.c @@ -108,7 +108,7 @@ r=(r+7)/8; for (; i<8; i++) key[i]=0; - des_set_key(key,ks); + des_set_key(&key,ks); fcrypt_body(&(out[0]),ks,Eswap0,Eswap1); ll=out[0]; l2c(ll,b); |