gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [gnurl] 72/125: brotli: allow compiling with version 0.6.0.


From: gnunet
Subject: [GNUnet-SVN] [gnurl] 72/125: brotli: allow compiling with version 0.6.0.
Date: Sun, 21 Jan 2018 23:42:07 +0100

This is an automated email from the git hooks/post-receive script.

ng0 pushed a commit to branch master
in repository gnurl.

commit e639d4ca4d794c222dde4680d9ff35053f501042
Author: Patrick Monnerat <address@hidden>
AuthorDate: Wed Dec 20 15:30:35 2017 +0100

    brotli: allow compiling with version 0.6.0.
    
    Some error codes were not yet defined in brotli 0.6.0: do not issue code
    for them in this case.
---
 lib/content_encoding.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/lib/content_encoding.c b/lib/content_encoding.c
index 3d061375c..c2ba26972 100644
--- a/lib/content_encoding.c
+++ b/lib/content_encoding.c
@@ -546,8 +546,12 @@ static CURLcode brotli_map_error(BrotliDecoderErrorCode be)
   case BROTLI_DECODER_ERROR_FORMAT_WINDOW_BITS:
   case BROTLI_DECODER_ERROR_FORMAT_PADDING_1:
   case BROTLI_DECODER_ERROR_FORMAT_PADDING_2:
+#ifdef BROTLI_DECODER_ERROR_COMPOUND_DICTIONARY
   case BROTLI_DECODER_ERROR_COMPOUND_DICTIONARY:
+#endif
+#ifdef BROTLI_DECODER_ERROR_DICTIONARY_NOT_SET
   case BROTLI_DECODER_ERROR_DICTIONARY_NOT_SET:
+#endif
   case BROTLI_DECODER_ERROR_INVALID_ARGUMENTS:
     return CURLE_BAD_CONTENT_ENCODING;
   case BROTLI_DECODER_ERROR_ALLOC_CONTEXT_MODES:

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]