wez             Mon Mar 31 12:58:28 2003 EDT

  Modified files:              
    /php4/ext/openssl   openssl.c 
  Log:
  Fix const warning
  
  
Index: php4/ext/openssl/openssl.c
diff -u php4/ext/openssl/openssl.c:1.72 php4/ext/openssl/openssl.c:1.73
--- php4/ext/openssl/openssl.c:1.72     Sun Mar 30 17:29:21 2003
+++ php4/ext/openssl/openssl.c  Mon Mar 31 12:58:28 2003
@@ -18,7 +18,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: openssl.c,v 1.72 2003/03/30 22:29:21 derick Exp $ */
+/* $Id: openssl.c,v 1.73 2003/03/31 17:58:28 wez Exp $ */
 
 #ifdef HAVE_CONFIG_H
 #include "config.h"
@@ -2302,7 +2302,7 @@
                goto clean_exit;
        }
 
-       p7 = PKCS7_encrypt(recipcerts, infile, cipher, flags);
+       p7 = PKCS7_encrypt(recipcerts, infile, (EVP_CIPHER*)cipher, flags);
 
        if (p7 == NULL) {
                goto clean_exit;



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to