diff options
author | tb <> | 2024-03-02 09:51:36 +0000 |
---|---|---|
committer | tb <> | 2024-03-02 09:51:36 +0000 |
commit | d904a8f9d2ba21b2cd6d4e74ec8cd68927c5e6f9 (patch) | |
tree | dd0c056425e4178b7537f0e9644e33b91936b56d /src | |
parent | 1b815a2be7fd270ea2364e335e4c661b4687f353 (diff) | |
download | openbsd-d904a8f9d2ba21b2cd6d4e74ec8cd68927c5e6f9.tar.gz openbsd-d904a8f9d2ba21b2cd6d4e74ec8cd68927c5e6f9.tar.bz2 openbsd-d904a8f9d2ba21b2cd6d4e74ec8cd68927c5e6f9.zip |
Remove unused OBJ_create_and_add_object()
This is an alias for OBJ_create(). I haven't dug into its history.
ok jsing
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libcrypto/objects/objects.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/lib/libcrypto/objects/objects.h b/src/lib/libcrypto/objects/objects.h index 2804e6fe1c..1a8490bd1a 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.28 2024/03/02 09:50:47 tb Exp $ */ | 1 | /* $OpenBSD: objects.h,v 1.29 2024/03/02 09:51:36 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 | * |
@@ -86,8 +86,6 @@ typedef struct obj_name_st { | |||
86 | const void *data; | 86 | const void *data; |
87 | } OBJ_NAME; | 87 | } OBJ_NAME; |
88 | 88 | ||
89 | #define OBJ_create_and_add_object(a,b,c) OBJ_create(a,b,c) | ||
90 | |||
91 | void OBJ_NAME_do_all(int type, void (*fn)(const OBJ_NAME *, void *arg), | 89 | void OBJ_NAME_do_all(int type, void (*fn)(const OBJ_NAME *, void *arg), |
92 | void *arg); | 90 | void *arg); |
93 | void OBJ_NAME_do_all_sorted(int type, void (*fn)(const OBJ_NAME *, void *arg), | 91 | void OBJ_NAME_do_all_sorted(int type, void (*fn)(const OBJ_NAME *, void *arg), |