Changeset 140

Show
Ignore:
Timestamp:
11/20/07 19:47:48 (11 months ago)
Author:
daboo
Message:

Fix a namespace issue.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • Mulberry/trunk/Sources_Common/Plugins/SSL/CSSLUtils.cp

    r19 r140  
    3131#include <openssl/x509.h> 
    3232 
    33 using namespace NSSL; 
     33namespace NSSL { 
    3434 
    3535// Specialisations 
     
    8585// Error strings 
    8686 
    87 void NSSL::ERR_better_errors(cdstring& shorterrs, cdstring& longerrs) 
     87void ERR_better_errors(cdstring& shorterrs, cdstring& longerrs) 
    8888{ 
    8989        unsigned long l; 
     
    111111 
    112112// Passphrase callback 
    113 int NSSL::PassphraseCallback(char* buf, int bufsiz, int verify, char* out) 
     113int PassphraseCallback(char* buf, int bufsiz, int verify, char* out) 
    114114{ 
    115115        // Ask user for passphrase 
     
    127127        return result; 
    128128} 
     129 
     130}