mirror of
https://github.com/curl/curl.git
synced 2026-04-14 22:51:53 +03:00
x509asn1: move declaration to header
Fixing clang-tidy warning:
```
tests/unit/unit1666.c:50:12: error: call to undeclared function 'encodeOID'; ISO C99 and later do not support implicit function declarations [clang-diagnostic-implicit-function-declaration]
50 | result = encodeOID(dbuf, oid, oid + spec->size);
| ^
```
Ref: https://github.com/curl/curl/actions/runs/23297585235/job/67749144361?pr=21008#step:46:736
Follow-up to 673e14cd33 #21003
Closes #21010
This commit is contained in:
parent
51f813308e
commit
f95fadd116
2 changed files with 3 additions and 1 deletions
|
|
@ -427,7 +427,6 @@ static CURLcode utf8asn1str(struct dynbuf *to, int type, const char *from,
|
||||||
*
|
*
|
||||||
* @unittest 1666
|
* @unittest 1666
|
||||||
*/
|
*/
|
||||||
UNITTEST CURLcode encodeOID(struct dynbuf *buf, const char *b, const char *e);
|
|
||||||
UNITTEST CURLcode encodeOID(struct dynbuf *store,
|
UNITTEST CURLcode encodeOID(struct dynbuf *store,
|
||||||
const char *beg, const char *end)
|
const char *beg, const char *end)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -77,6 +77,9 @@ CURLcode Curl_verifyhost(struct Curl_cfilter *cf, struct Curl_easy *data,
|
||||||
const char *beg, const char *end);
|
const char *beg, const char *end);
|
||||||
|
|
||||||
#ifdef UNITTESTS
|
#ifdef UNITTESTS
|
||||||
|
UNITTEST CURLcode encodeOID(struct dynbuf *store,
|
||||||
|
const char *beg, const char *end);
|
||||||
|
|
||||||
#if defined(USE_GNUTLS) || defined(USE_SCHANNEL) || defined(USE_MBEDTLS) || \
|
#if defined(USE_GNUTLS) || defined(USE_SCHANNEL) || defined(USE_MBEDTLS) || \
|
||||||
defined(USE_RUSTLS)
|
defined(USE_RUSTLS)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue