diff options
| author | Jeff Garzik <[email protected]> | 2012-07-21 06:59:25 -0700 |
|---|---|---|
| committer | Jeff Garzik <[email protected]> | 2012-07-21 06:59:25 -0700 |
| commit | fa914f1ddaeed79f1e2d5404b4789e3a1c1aebb2 (patch) | |
| tree | 617221ef74816d66e6434fea885b7921fd5927b9 /src/util.cpp | |
| parent | Merge pull request #1611 from Diapolo/addressbookpage_size (diff) | |
| parent | fix OpenSSL not written as proper noun in some comments (diff) | |
| download | discoin-fa914f1ddaeed79f1e2d5404b4789e3a1c1aebb2.tar.xz discoin-fa914f1ddaeed79f1e2d5404b4789e3a1c1aebb2.zip | |
Merge pull request #1616 from Diapolo/OpenSSL_typo
fix OpenSSL not written as proper noun in some comments
Diffstat (limited to 'src/util.cpp')
| -rw-r--r-- | src/util.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/util.cpp b/src/util.cpp index 963d58cd8..4cb8a214d 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -75,7 +75,7 @@ bool fLogTimestamps = false; CMedianFilter<int64> vTimeOffsets(200,0); bool fReopenDebugLog = false; -// Init openssl library multithreading support +// Init OpenSSL library multithreading support static CCriticalSection** ppmutexOpenSSL; void locking_callback(int mode, int i, const char* file, int line) { @@ -92,7 +92,7 @@ class CInit public: CInit() { - // Init openssl library multithreading support + // Init OpenSSL library multithreading support ppmutexOpenSSL = (CCriticalSection**)OPENSSL_malloc(CRYPTO_num_locks() * sizeof(CCriticalSection*)); for (int i = 0; i < CRYPTO_num_locks(); i++) ppmutexOpenSSL[i] = new CCriticalSection(); @@ -108,7 +108,7 @@ public: } ~CInit() { - // Shutdown openssl library multithreading support + // Shutdown OpenSSL library multithreading support CRYPTO_set_locking_callback(NULL); for (int i = 0; i < CRYPTO_num_locks(); i++) delete ppmutexOpenSSL[i]; |