]> git.ipfire.org Git - thirdparty/cups.git/commitdiff
Fix encoding of out-of-band values in ippserver output files.
authorMichael R Sweet <michael.r.sweet@gmail.com>
Thu, 22 Feb 2018 18:32:50 +0000 (13:32 -0500)
committerMichael R Sweet <michael.r.sweet@gmail.com>
Thu, 22 Feb 2018 18:32:50 +0000 (13:32 -0500)
CHANGES.md
test/ipptool.c

index b860bbdfd250f7be4edbbdcec623137a07cc159f..94ec6a5b45d478d1a54c7cb83500251e394d957d 100644 (file)
@@ -12,6 +12,8 @@ Changes in CUPS v2.3rc1
 - TLS connections now properly timeout (rdar://34938533)
 - Temp files could not be created in some sandboxed applications
   (rdar://37789645)
+- The ipptool `--ippserver` option did not encode out-of-band attributes
+  correctly.
 - Documentation fixes (Issue #5252)
 
 
index 6da421e89001841d9751cacf86a3456ceda40bcc..9f5ff3f2bba34986dc4a935aeb70792293ce2135 100644 (file)
@@ -2594,7 +2594,7 @@ print_ippserver_attr(
        break;
 
     default :
-       cupsFilePuts(data->outfile, " \"\"");
+        /* Out-of-band value */
        break;
   }