From: jsing Date: Sat, 12 Feb 2022 03:02:47 +0000 (+0000) Subject: Revise for OBJ_obj2txt() OID arc limits. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=6aa8ab8764e491862e1faa63c586cc9d234b7b3e;p=openbsd Revise for OBJ_obj2txt() OID arc limits. --- diff --git a/regress/lib/libcrypto/objects/objectstest.c b/regress/lib/libcrypto/objects/objectstest.c index c1890d8a96a..18b57436c81 100644 --- a/regress/lib/libcrypto/objects/objectstest.c +++ b/regress/lib/libcrypto/objects/objectstest.c @@ -1,4 +1,4 @@ -/* $OpenBSD: objectstest.c,v 1.2 2022/02/11 16:39:50 jsing Exp $ */ +/* $OpenBSD: objectstest.c,v 1.3 2022/02/12 03:02:47 jsing Exp $ */ /* * Copyright (c) 2017, 2022 Joel Sing * @@ -353,20 +353,20 @@ struct oid_large_test oid_large_tests[] = { .oid = "1.3.18446744073709551616", .asn1_der = asn1_large_oid2, .asn1_der_len = sizeof(asn1_large_oid2), - .obj2txt = 1, + .obj2txt = 0, }, { .oid = "1.3.340282366920938463463374607431768211455", .asn1_der = asn1_large_oid3, .asn1_der_len = sizeof(asn1_large_oid3), - .obj2txt = 1, + .obj2txt = 0, }, { .oid = "1.3.115792089237316195423570985008687907853269984665640" "564039457584007913129639935", .asn1_der = asn1_large_oid4, .asn1_der_len = sizeof(asn1_large_oid4), - .obj2txt = 1, + .obj2txt = 0, }, };