projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a63a3f5
)
avoid cast
author
Bodo Möller
<bodo@openssl.org>
Mon, 2 Aug 1999 19:55:51 +0000
(19:55 +0000)
committer
Bodo Möller
<bodo@openssl.org>
Mon, 2 Aug 1999 19:55:51 +0000
(19:55 +0000)
crypto/des/set_key.c
patch
|
blob
|
history
diff --git
a/crypto/des/set_key.c
b/crypto/des/set_key.c
index 70b870f4b0a9f0c9328f7b63726f859226de7838..52553a4c1665617bdda81ca2e8c2f4a9ddfd528f 100644
(file)
--- a/
crypto/des/set_key.c
+++ b/
crypto/des/set_key.c
@@
-166,7
+166,7
@@
int des_set_key(const_des_cblock *key, des_key_schedule schedule)
return(-2);
}
- k
=(DES_LONG *)schedule
;
+ k
= &schedule->ks.deslong[0]
;
in = &(*key)[0];
c2l(in,c);