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:
928cc3a
)
use <= instead of ==
author
Ulf Möller
<ulf@openssl.org>
Thu, 8 Feb 2001 17:45:32 +0000
(17:45 +0000)
committer
Ulf Möller
<ulf@openssl.org>
Thu, 8 Feb 2001 17:45:32 +0000
(17:45 +0000)
crypto/rand/randfile.c
patch
|
blob
|
history
diff --git
a/crypto/rand/randfile.c
b/crypto/rand/randfile.c
index fe4f2a9a211e95fa835c566e5ba196cc52ca43d1..02f16aa810329d28ee698dc51a05130f37645c9a 100644
(file)
--- a/
crypto/rand/randfile.c
+++ b/
crypto/rand/randfile.c
@@
-120,7
+120,7
@@
int RAND_load_file(const char *file, long bytes)
if (bytes > 0)
{
bytes-=n;
- if (bytes
=
= 0) break;
+ if (bytes
<
= 0) break;
}
}
fclose(in);