blautenb 2003/11/02 23:00:50
Modified: c/src/tools/xtest xtest.cpp
Log:
NIX fix
Revision Changes Path
1.30 +3 -3 xml-security/c/src/tools/xtest/xtest.cpp
Index: xtest.cpp
===================================================================
RCS file: /home/cvs/xml-security/c/src/tools/xtest/xtest.cpp,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- xtest.cpp 3 Nov 2003 06:55:45 -0000 1.29
+++ xtest.cpp 3 Nov 2003 07:00:50 -0000 1.30
@@ -352,14 +352,14 @@
}
#else
# if defined (HAVE_OPENSSL)
- OpenSSLCryptoKeyHMAC * hmacKey = new OpenSSLCryptoKeyHMAC();
+ hmacKey = new OpenSSLCryptoKeyHMAC();
if (first) {
cerr << "Using OpenSSL as the cryptography provider" <<
endl;
first = false;
}
# else
# if defined (HAVE_WINCAPI)
- WinCAPICryptoKeyHMAC * hmacKey = new WinCAPICryptoKeyHMAC(0);
+ hmacKey = new WinCAPICryptoKeyHMAC(0);
if (first) {
cerr << "Using Windows Crypto API as the cryptography
provider" << endl;
first = false;