From f0e1aa8ef967926fd697b78de1943b7f4792adbe Mon Sep 17 00:00:00 2001 From: tb Date: Sat, 22 Jul 2023 19:08:03 +0000 Subject: [PATCH] Align argument names of OBJ_add_sigid() with the other functions. --- lib/libcrypto/objects/obj_xref.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/libcrypto/objects/obj_xref.c b/lib/libcrypto/objects/obj_xref.c index 7cd3141d14c..ae18d69af3a 100644 --- a/lib/libcrypto/objects/obj_xref.c +++ b/lib/libcrypto/objects/obj_xref.c @@ -1,4 +1,4 @@ -/* $OpenBSD: obj_xref.c,v 1.11 2023/07/22 18:32:05 tb Exp $ */ +/* $OpenBSD: obj_xref.c,v 1.12 2023/07/22 19:08:03 tb Exp $ */ /* * Copyright (c) 2023 Theo Buehler @@ -312,7 +312,7 @@ OBJ_find_sigid_by_algs(int *sign_nid, int hash_nid, int pkey_nid) LCRYPTO_ALIAS(OBJ_find_sigid_by_algs); int -OBJ_add_sigid(int signid, int dig_id, int pkey_id) +OBJ_add_sigid(int sign_nid, int hash_nid, int pkey_nid) { return 0; } -- 2.20.1