diff options
author | tb <> | 2024-03-02 09:43:10 +0000 |
---|---|---|
committer | tb <> | 2024-03-02 09:43:10 +0000 |
commit | 14903cc3bcc1a541d0da5e166360fc3f53162f87 (patch) | |
tree | d1545c8e5540f56d7e8cca32a9cc66ce89b7ae89 /src/lib/libcrypto/objects | |
parent | 4f9eba544f5c9dc7eb72b7af0139e38dafb18ffb (diff) | |
download | openbsd-14903cc3bcc1a541d0da5e166360fc3f53162f87.tar.gz openbsd-14903cc3bcc1a541d0da5e166360fc3f53162f87.tar.bz2 openbsd-14903cc3bcc1a541d0da5e166360fc3f53162f87.zip |
Switch name member of OBJ_NAME to const void *
Because this is the type it should have had from the get go.
ok jsing
Diffstat (limited to 'src/lib/libcrypto/objects')
-rw-r--r-- | src/lib/libcrypto/objects/objects.h | 4 |
1 files changed, 2 insertions, 2 deletions
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 @@ | |||
1 | /* $OpenBSD: objects.h,v 1.24 2024/03/02 09:41:02 tb Exp $ */ | 1 | /* $OpenBSD: objects.h,v 1.25 2024/03/02 09:43:10 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 | * |
@@ -89,7 +89,7 @@ typedef struct obj_name_st { | |||
89 | int type; | 89 | int type; |
90 | int alias; | 90 | int alias; |
91 | const char *name; | 91 | const char *name; |
92 | const char *data; | 92 | const void *data; |
93 | } OBJ_NAME; | 93 | } OBJ_NAME; |
94 | 94 | ||
95 | #define OBJ_create_and_add_object(a,b,c) OBJ_create(a,b,c) | 95 | #define OBJ_create_and_add_object(a,b,c) OBJ_create(a,b,c) |