diff options
author | Rob Austein <sra@hactrn.net> | 2009-08-15 19:53:08 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2009-08-15 19:53:08 +0000 |
commit | 74ecf6fc44d057f7c6126685d47a04c17415ff27 (patch) | |
tree | d692ba7a9adf8c68255a7a16a035e5aa1117d5a6 /pow | |
parent | 6a57a77a295afb02dd7d3d65f5b9cead99d8f8ae (diff) |
Typo
svn path=/pow/POW-0.7/POW.c; revision=2689
Diffstat (limited to 'pow')
-rw-r--r-- | pow/POW-0.7/POW.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pow/POW-0.7/POW.c b/pow/POW-0.7/POW.c index a8b4189b..80ce4601 100644 --- a/pow/POW-0.7/POW.c +++ b/pow/POW-0.7/POW.c @@ -4808,7 +4808,7 @@ static int ssl_object_verify_callback(X509_STORE_CTX *ctx, void *arg) if (ctx->current_issuer) X509_print(b, ctx->current_issuer); - if ((len == BIO_ctrl_pending(b)) == 0 || + if ((len = BIO_ctrl_pending(b)) == 0 || (buf = malloc(len)) == NULL) goto fail; |