diff options
-rw-r--r-- | pow/POW-0.7/POW.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pow/POW-0.7/POW.c b/pow/POW-0.7/POW.c index 02043183..0735ffd9 100644 --- a/pow/POW-0.7/POW.c +++ b/pow/POW-0.7/POW.c @@ -4680,9 +4680,9 @@ ssl_object_get_cipher(ssl_object *self, PyObject *args) return NULL; } -static int stub_callback(int preverify_ok, X509_STORE_CTX *ctx) +static int stub_callback(int ok, X509_STORE_CTX *ctx) { - return 1; + return ok; } static char ssl_object_set_verify_mode__doc__[] = |