]> git.ipfire.org Git - thirdparty/cups.git/commitdiff
The IPP backend now sets the printer-state-message to "Ready to print." at the
authormike <mike@7a7537e8-13f0-0310-91df-b6672ffda945>
Thu, 14 Jan 2010 22:30:23 +0000 (22:30 +0000)
committermike <mike@7a7537e8-13f0-0310-91df-b6672ffda945>
Thu, 14 Jan 2010 22:30:23 +0000 (22:30 +0000)
end of a successful job (STR #3460)

git-svn-id: svn+ssh://src.apple.com/svn/cups/cups.org/trunk@8947 7a7537e8-13f0-0310-91df-b6672ffda945

CHANGES-1.4.txt
backend/ipp.c

index dab86899a5da896444952c6b55629eabd14c66e2..23d6eedfe09f29fcebb3593a8b585672634b5aa0 100644 (file)
@@ -7,6 +7,8 @@ CHANGES IN CUPS V1.4.3
          connection, leading to a crash (STR #3200)
        - Localization updates (STR #3352, STR #3409, STR #3422, STR #3452)
        - Documentation update (STR #3451)
+       - The IPP backend now sets the printer-state-message to "Ready to
+         print." at the end of a successful job (STR #3460)
        - The PPD compiler did not correctly add the manufacturer to the output
          filename when using the "-m" option (STR #3469)
        - The IPP backend did not handle authentication properly for the Get-
index 213de1ae42a5ba78fe9251d40434490e407b3447..98aef4c40c5b86d4e1175d7b0b184c5c43ddc10b 100644 (file)
@@ -1340,7 +1340,10 @@ main(int  argc,                          /* I - Number of command-line args */
   else if (ipp_status > IPP_OK_CONFLICT)
     return (CUPS_BACKEND_FAILED);
   else
+  {
+    _cupsLangPuts(stderr, _("INFO: Ready to print.\n"));
     return (CUPS_BACKEND_OK);
+  }
 }