diff options
author | tedu <> | 2014-07-10 11:25:13 +0000 |
---|---|---|
committer | tedu <> | 2014-07-10 11:25:13 +0000 |
commit | 9d3143ff6ad17d4edec6f49bea7bcdf7794f64a5 (patch) | |
tree | 7e6c9ca704304f6f99e87e8dac39a6d87504a1c5 /src/lib/libcrypto/rsa/rsa_none.c | |
parent | 61a4bd4a18867aecea2b5f0da267ba17f1f102ea (diff) | |
download | openbsd-9d3143ff6ad17d4edec6f49bea7bcdf7794f64a5.tar.gz openbsd-9d3143ff6ad17d4edec6f49bea7bcdf7794f64a5.tar.bz2 openbsd-9d3143ff6ad17d4edec6f49bea7bcdf7794f64a5.zip |
delete some casts. ok miod
Diffstat (limited to 'src/lib/libcrypto/rsa/rsa_none.c')
-rw-r--r-- | src/lib/libcrypto/rsa/rsa_none.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/rsa/rsa_none.c b/src/lib/libcrypto/rsa/rsa_none.c index 818fd26fa4..da95ecf619 100644 --- a/src/lib/libcrypto/rsa/rsa_none.c +++ b/src/lib/libcrypto/rsa/rsa_none.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: rsa_none.c,v 1.6 2014/07/09 19:51:38 jsing Exp $ */ | 1 | /* $OpenBSD: rsa_none.c,v 1.7 2014/07/10 11:25:13 tedu Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -78,7 +78,7 @@ RSA_padding_add_none(unsigned char *to, int tlen, const unsigned char *from, | |||
78 | return 0; | 78 | return 0; |
79 | } | 79 | } |
80 | 80 | ||
81 | memcpy(to, from, (unsigned int)flen); | 81 | memcpy(to, from, flen); |
82 | return 1; | 82 | return 1; |
83 | } | 83 | } |
84 | 84 | ||