diff --git a/src/libdoh/src/lib.rs b/src/libdoh/src/lib.rs index 0060157..6b4ca0b 100644 --- a/src/libdoh/src/lib.rs +++ b/src/libdoh/src/lib.rs @@ -212,7 +212,7 @@ impl DoH { .header(hyper::header::CONTENT_TYPE, "application/dns-message") .header( hyper::header::CACHE_CONTROL, - format!("max-age={}, max-stale={}, stale-while-revalidate={}, stale-if-error={}", ttl, ttl, ttl, ttl).as_str(), + format!("max-age={}, stale-while-revalidate={}, stale-if-error={}", ttl, ttl, ttl).as_str(), ) .body(Body::from(packet)) .unwrap();