summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/x509/x509_obj.c
diff options
context:
space:
mode:
authortb <>2025-01-27 04:24:46 +0000
committertb <>2025-01-27 04:24:46 +0000
commit6e5c75f4054d28460f58b77c786448f3ba338e0b (patch)
treef0c31df855653634d3e9b461f6ae6611a8f1bde5 /src/lib/libcrypto/x509/x509_obj.c
parent07c77e4b274bd1ffd14230c1fe7c3b9f0fe986b2 (diff)
downloadopenbsd-6e5c75f4054d28460f58b77c786448f3ba338e0b.tar.gz
openbsd-6e5c75f4054d28460f58b77c786448f3ba338e0b.tar.bz2
openbsd-6e5c75f4054d28460f58b77c786448f3ba338e0b.zip
x509_obj.c: be better at sorting
Diffstat (limited to 'src/lib/libcrypto/x509/x509_obj.c')
-rw-r--r--src/lib/libcrypto/x509/x509_obj.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/x509/x509_obj.c b/src/lib/libcrypto/x509/x509_obj.c
index 1fcc53e5f0..db1741cc9e 100644
--- a/src/lib/libcrypto/x509/x509_obj.c
+++ b/src/lib/libcrypto/x509/x509_obj.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: x509_obj.c,v 1.24 2025/01/26 21:05:19 tb Exp $ */ 1/* $OpenBSD: x509_obj.c,v 1.25 2025/01/27 04:24:46 tb Exp $ */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
@@ -56,8 +56,8 @@
56 * [including the GNU Public Licence.] 56 * [including the GNU Public Licence.]
57 */ 57 */
58 58
59#include <stdio.h>
60#include <stdint.h> 59#include <stdint.h>
60#include <stdio.h>
61#include <stdlib.h> 61#include <stdlib.h>
62#include <string.h> 62#include <string.h>
63 63