From b2ca61a0acc9c0b68d67c536c8df40b4fbccaa93 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Tue, 1 Jul 2025 00:09:37 +0200 Subject: [PATCH] curlinfo: provide the 'digest' feature ... since the tests check for the feature using this name, we accidentally had lots tests not run because this provided the `digest-auth` feature that was not checked for. Closes #17786 --- docs/tests/FILEFORMAT.md | 1 + src/curlinfo.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/tests/FILEFORMAT.md b/docs/tests/FILEFORMAT.md index 1c9cf06ee1..e6da32a5cf 100644 --- a/docs/tests/FILEFORMAT.md +++ b/docs/tests/FILEFORMAT.md @@ -456,6 +456,7 @@ Features testable here are: - `cookies` - `crypto` - `Debug` +- `digest` - `DoH` - `getrlimit` - `GnuTLS` diff --git a/src/curlinfo.c b/src/curlinfo.c index 0274b0a2d5..054dcd251b 100644 --- a/src/curlinfo.c +++ b/src/curlinfo.c @@ -70,7 +70,7 @@ static const char *disabled[]={ "ON" #endif , - "digest-auth: " + "digest: " #ifdef CURL_DISABLE_DIGEST_AUTH "OFF" #else