From a7f82808c4d0d09ed7676b20d3281741ad8e3b0b Mon Sep 17 00:00:00 2001 From: Philip Kaufmann Date: Sat, 21 Jul 2012 12:44:54 +0200 Subject: fix OpenSSL not written as proper noun in some comments --- src/bignum.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/bignum.h') 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) -- cgit v1.2.3