fix OpenSSL not written as proper noun in some comments

This commit is contained in:
Philip Kaufmann
2012-07-21 12:44:54 +02:00
parent 134cb634b1
commit a7f82808c4
2 changed files with 4 additions and 4 deletions

View File

@@ -416,7 +416,7 @@ public:
CBigNum& operator>>=(unsigned int shift)
{
// Note: BN_rshift segfaults on 64-bit if 2^shift is greater than the number
// if built on ubuntu 9.04 or 9.10, probably depends on version of openssl
// if built on ubuntu 9.04 or 9.10, probably depends on version of OpenSSL
CBigNum a = 1;
a <<= shift;
if (BN_cmp(&a, this) > 0)