From 09f034b560cfb754114288ee38db59e70f0dea51 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Love=20H=C3=B6rnquist=20=C3=85strand?= Date: Sat, 13 May 2006 20:26:47 +0000 Subject: [PATCH] Avoid shadowing. git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@17574 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/hx509/cert.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lib/hx509/cert.c b/lib/hx509/cert.c index 7f4802c2d..72cb857a8 100644 --- a/lib/hx509/cert.c +++ b/lib/hx509/cert.c @@ -295,9 +295,9 @@ hx509_verify_attach_anchors(hx509_verify_ctx ctx, hx509_certs set) } void -hx509_verify_attach_revoke(hx509_verify_ctx ctx, hx509_revoke_ctx revoke) +hx509_verify_attach_revoke(hx509_verify_ctx ctx, hx509_revoke_ctx revoke_ctx) { - ctx->revoke_ctx = revoke; + ctx->revoke_ctx = revoke_ctx; } void @@ -751,7 +751,6 @@ find_parent(hx509_context context, { hx509_name name; char *str; - int ret; ret = hx509_cert_get_subject(current, &name); if (ret) {