From 14903cc3bcc1a541d0da5e166360fc3f53162f87 Mon Sep 17 00:00:00 2001 From: tb <> Date: Sat, 2 Mar 2024 09:43:10 +0000 Subject: Switch name member of OBJ_NAME to const void * Because this is the type it should have had from the get go. ok jsing --- src/lib/libcrypto/objects/objects.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/lib/libcrypto/objects') diff --git a/src/lib/libcrypto/objects/objects.h b/src/lib/libcrypto/objects/objects.h index 37570a5c80..2d3aa986d5 100644 --- a/src/lib/libcrypto/objects/objects.h +++ b/src/lib/libcrypto/objects/objects.h @@ -1,4 +1,4 @@ -/* $OpenBSD: objects.h,v 1.24 2024/03/02 09:41:02 tb Exp $ */ +/* $OpenBSD: objects.h,v 1.25 2024/03/02 09:43:10 tb Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -89,7 +89,7 @@ typedef struct obj_name_st { int type; int alias; const char *name; - const char *data; + const void *data; } OBJ_NAME; #define OBJ_create_and_add_object(a,b,c) OBJ_create(a,b,c) -- cgit v1.2.3-55-g6feb