summaryrefslogtreecommitdiffstats
path: root/apps/verify.c
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2000-02-26 08:36:46 +0000
committerBodo Möller <bodo@openssl.org>2000-02-26 08:36:46 +0000
commit6d0d5431d4e3e5d8a29166be3ba9362fb988a312 (patch)
tree03891e30bc299ef2b9b5af364d403473f4cae168 /apps/verify.c
parent7bd3a58022f7dca4fc7c45081428997d947ff94e (diff)
More get0 et al. changes. Also provide fgrep targets in CHANGES
where the new functions are mentioned.
Diffstat (limited to 'apps/verify.c')
-rw-r--r--apps/verify.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/verify.c b/apps/verify.c
index c2b19a1b07..267ee4ecd7 100644
--- a/apps/verify.c
+++ b/apps/verify.c
@@ -124,7 +124,7 @@ int MAIN(int argc, char **argv)
BIO_printf(bio_err, "unrecognized purpose\n");
goto end;
}
- xptmp = X509_PURPOSE_iget(i);
+ xptmp = X509_PURPOSE_get0(i);
purpose = X509_PURPOSE_get_id(xptmp);
}
else if (strcmp(*argv,"-untrusted") == 0)
@@ -190,7 +190,7 @@ end:
BIO_printf(bio_err,"recognized usages:\n");
for(i = 0; i < X509_PURPOSE_get_count(); i++) {
X509_PURPOSE *ptmp;
- ptmp = X509_PURPOSE_iget(i);
+ ptmp = X509_PURPOSE_get0(i);
BIO_printf(bio_err, "\t%-10s\t%s\n", X509_PURPOSE_get0_sname(ptmp),
X509_PURPOSE_get0_name(ptmp));
}