summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortb <>2025-01-27 04:24:46 +0000
committertb <>2025-01-27 04:24:46 +0000
commitfcdc9e4a3316f2f8313cdb8cd932083814d800e0 (patch)
treef0c31df855653634d3e9b461f6ae6611a8f1bde5 /src
parentbbe39a0540dc94326e91644accfa084242bb9f8a (diff)
downloadopenbsd-fcdc9e4a3316f2f8313cdb8cd932083814d800e0.tar.gz
openbsd-fcdc9e4a3316f2f8313cdb8cd932083814d800e0.tar.bz2
openbsd-fcdc9e4a3316f2f8313cdb8cd932083814d800e0.zip
x509_obj.c: be better at sorting
Diffstat (limited to 'src')
-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