diff options
| author | tb <> | 2024-03-02 09:43:10 +0000 |
|---|---|---|
| committer | tb <> | 2024-03-02 09:43:10 +0000 |
| commit | 3f22814f63ba66035d2e72f3a89f12dab47db39b (patch) | |
| tree | d1545c8e5540f56d7e8cca32a9cc66ce89b7ae89 /src/lib/libcrypto/objects | |
| parent | 0afd4713583c48a961d60ae9f02ee1384b6989a1 (diff) | |
| download | openbsd-3f22814f63ba66035d2e72f3a89f12dab47db39b.tar.gz openbsd-3f22814f63ba66035d2e72f3a89f12dab47db39b.tar.bz2 openbsd-3f22814f63ba66035d2e72f3a89f12dab47db39b.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) |
