diff options
author | Jeff Garzik <jgarzik@exmulti.com> | 2012-07-21 06:59:25 -0700 |
---|---|---|
committer | Jeff Garzik <jgarzik@exmulti.com> | 2012-07-21 06:59:25 -0700 |
commit | fa914f1ddaeed79f1e2d5404b4789e3a1c1aebb2 (patch) | |
tree | 617221ef74816d66e6434fea885b7921fd5927b9 /src/bignum.h | |
parent | 134cb634b1d0b117291f33c0c80202157462797f (diff) | |
parent | a7f82808c4d0d09ed7676b20d3281741ad8e3b0b (diff) |
Merge pull request #1616 from Diapolo/OpenSSL_typo
fix OpenSSL not written as proper noun in some comments
Diffstat (limited to 'src/bignum.h')
-rw-r--r-- | src/bignum.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bignum.h b/src/bignum.h index 47f6229431..9fea3f70fb 100644 --- a/src/bignum.h +++ b/src/bignum.h @@ -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) |