]> git.ipfire.org Git - thirdparty/cups.git/commitdiff
Mirror missing comma fix (Issue #1234)
authorMichael R Sweet <msweet@msweet.org>
Wed, 16 Apr 2025 19:16:20 +0000 (15:16 -0400)
committerMichael R Sweet <msweet@msweet.org>
Wed, 16 Apr 2025 19:16:20 +0000 (15:16 -0400)
CHANGES.md
cups/ipp-support.c

index 4c2fd0251ac805a0a8984d8e243a5906b984cb78..bf925c306f1e4895d1a7f6c705fdf0e67d557366 100644 (file)
@@ -6,6 +6,7 @@ Changes in CUPS v2.4.13 (YYYY-MM-DD)
 ------------------------------------
 
 - Fixed a memory leak in `httpClose` (Issue #1223)
+- Fixed missing commas in `ippCreateRequestedArray` (Issue #1234)
 
 
 Changes in CUPS v2.4.12 (2025-04-08)
index b0cbadf8de3eb80d6467f271eaf3bbbaa3b0a308..19bde141c46e559752fb9160a9bb28fc3a1758d7 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * Internet Printing Protocol support functions for CUPS.
  *
- * Copyright © 2020-2024 by OpenPrinting.
+ * Copyright © 2020-2025 by OpenPrinting.
  * Copyright © 2007-2018 by Apple Inc.
  * Copyright © 1997-2007 by Easy Software Products, all rights reserved.
  *
@@ -1383,9 +1383,9 @@ ippCreateRequestedArray(ipp_t *request)   /* I - IPP request */
     "job-account-id",
     "job-account-id-default",
     "job-account-id-supported",
-    "job-accounting-sheets"
-    "job-accounting-sheets-default"
-    "job-accounting-sheets-supported"
+    "job-accounting-sheets",
+    "job-accounting-sheets-default",
+    "job-accounting-sheets-supported",
     "job-accounting-user-id",
     "job-accounting-user-id-default",
     "job-accounting-user-id-supported",