diff --git a/CHANGES.md b/CHANGES.md index 52c78cea8a..02db7b9b61 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -7,6 +7,8 @@ Changes in CUPS v2.5b1 (TBA) - Added `cupsDNSSD` APIs. - Added `cupsConcatString` and `cupsCopyString` string APIs. - Added OpenSSL support for `cupsHashData` (Issue #762) +- Updated `cupsArray` APIs. +- Fixed Digest authentication support (Issue #260) - Fixed delays in lpd backend (Issue #741) - Fixed segfault in `cupsGetNamedDest()` when trying to get default printer, but the default printer is not set (Issue #719) diff --git a/cups/http-private.h b/cups/http-private.h index 8f98a3d5f7..e783fccde1 100644 --- a/cups/http-private.h +++ b/cups/http-private.h @@ -221,8 +221,6 @@ struct _http_s // HTTP connection structure /* Next nonce value from Authentication-Info */ opaque[HTTP_MAX_VALUE], /* Opaque value from WWW-Authenticate */ - qop[HTTP_MAX_VALUE], - /* qop value from WWW-Authenticate */ realm[HTTP_MAX_VALUE]; /* Realm from WWW-Authenticate */ @@ -231,6 +229,9 @@ struct _http_s // HTTP connection structure /* Allocated field values */ *default_fields[HTTP_FIELD_MAX]; /* Default field values, if any */ + /**** New in CUPS 2.5 ****/ + char qop[HTTP_MAX_VALUE]; + /* qop value from WWW-Authenticate */ }; # endif /* !_HTTP_NO_PRIVATE */