diff options
author | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2005-10-15 10:01:44 +0000 |
---|---|---|
committer | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2005-10-15 10:01:44 +0000 |
commit | 4e75b2e8b871346f9a36779a1135a3029a610277 (patch) | |
tree | 4ab6fb376833f095844026ca33bb996f982faafe /pkcs11.c | |
parent | svn merge -r 614:615 $SO/patches/openvpn-2-1_alpha3a-tcpbind (diff) | |
download | openvpn-4e75b2e8b871346f9a36779a1135a3029a610277.tar.xz |
Minor style cleanup for --enable-pedantic.
Still need some pedantic cleanup in pkcs11.c.
git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@624 e7ae566f-a301-0410-adde-c780ea21d3b5
Diffstat (limited to 'pkcs11.c')
-rw-r--r-- | pkcs11.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -119,8 +119,8 @@ static void _fixupFixedString ( IN const char * const szSource, - OUT char * const szTarget, // MUST BE >= nLength+1 - IN const int nLength // FIXED STRING LENGTH + OUT char * const szTarget, /* MUST BE >= nLength+1 */ + IN const int nLength /* FIXED STRING LENGTH */ ); static void @@ -273,8 +273,8 @@ static void _fixupFixedString ( IN const char * const szSource, - OUT char * const szTarget, // MUST BE >= nLength+1 - IN const int nLength // FIXED STRING LENGTH + OUT char * const szTarget, /* MUST BE >= nLength+1 */ + IN const int nLength /* FIXED STRING LENGTH */ ) { char *p; @@ -1865,7 +1865,7 @@ SSL_CTX_use_pkcs11 ( RSA_set_method (rsa, openssl_pkcs11_get_rsa_method (rsa)); rsa->flags |= RSA_FLAG_SIGN_VER; - // it will be freed when rsa usage count will be zero + /* it will be freed when rsa usage count will be zero */ fShouldFreeOpenSSLSession = false; } |