artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d4028b0
)
Return a non-zero error exit code on any DER cache discrepancies
author
job
<job@openbsd.org>
Fri, 28 Apr 2023 18:31:34 +0000
(18:31 +0000)
committer
job
<job@openbsd.org>
Fri, 28 Apr 2023 18:31:34 +0000
(18:31 +0000)
regress/lib/libcrypto/x509/x509_asn1.c
patch
|
blob
|
history
diff --git
a/regress/lib/libcrypto/x509/x509_asn1.c
b/regress/lib/libcrypto/x509/x509_asn1.c
index
d6b4e1c
..
13054cd
100644
(file)
--- a/
regress/lib/libcrypto/x509/x509_asn1.c
+++ b/
regress/lib/libcrypto/x509/x509_asn1.c
@@
-1,4
+1,4
@@
-/* $OpenBSD: x509_asn1.c,v 1.1
2 2023/04/28 18:27:49 t
b Exp $ */
+/* $OpenBSD: x509_asn1.c,v 1.1
3 2023/04/28 18:31:34 jo
b Exp $ */
/*
* Copyright (c) 2023 Job Snijders <job@openbsd.org>
*
@@
-517,8
+517,8
@@
int main(void)
int failed = 0;
failed |= test_x509_setters();
-
/* failed |= */
test_x509_crl_setters();
-
/* failed |= */
test_x509_req_setters();
+
failed |=
test_x509_crl_setters();
+
failed |=
test_x509_req_setters();
return failed;
}