From e3d00397222fb4690d5a69cf6230a611462249d1 Mon Sep 17 00:00:00 2001 From: mike Date: Fri, 16 Nov 2012 00:54:02 +0000 Subject: [PATCH] Changelog. Prefer deflate over gzip. git-svn-id: svn+ssh://src.apple.com/svn/cups/cups.org/trunk@10703 7a7537e8-13f0-0310-91df-b6672ffda945 --- CHANGES.txt | 7 +++++-- backend/ipp.c | 6 +++--- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index 8d99446022..3f46641592 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,10 +1,13 @@ -CHANGES.txt - 1.7b1 - 2012-11-13 +CHANGES.txt - 1.7b1 - 2012-11-15 -------------------------------- CHANGES IN CUPS V1.7b1 + - Added new IPP APIs for checking values (STR #4167) + - Added new IPP APis for adding and setting formatted strings. - Added new HTTP APIs to support basic server functionality via libcups. - - CUPS now supports compressing and decompressing streamed data. + - CUPS now supports compressing and decompressing streamed data + (STR #4168) - CUPS now supports higher-level PIN printing, external accounting systems, and "print here" printing environments (STR #4169) - IRIX is no longer a supported operating system (STR #4092) diff --git a/backend/ipp.c b/backend/ipp.c index 06a37666a3..dcc60f8d1f 100644 --- a/backend/ipp.c +++ b/backend/ipp.c @@ -1066,10 +1066,10 @@ main(int argc, /* I - Number of command-line args */ } else if (!compression) { - if (ippContainsString(compression_sup, "gzip")) - compression = "gzip"; - else if (ippContainsString(compression_sup, "deflate")) + if (ippContainsString(compression_sup, "deflate")) compression = "deflate"; + else if (ippContainsString(compression_sup, "gzip")) + compression = "gzip"; if (compression) fprintf(stderr, "DEBUG: Automatically using \"%s\" compression.\n", -- 2.47.3