]> git.ipfire.org Git - thirdparty/cups.git/blobdiff - cups/ipp-support.c
Load cups into easysw/current.
[thirdparty/cups.git] / cups / ipp-support.c
index 8c1a82daab412e890abfdfbe8d2d48102312ad9c..9a08e6266bd41818bf85184ce397fe7f5a7d748e 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * "$Id: ipp-support.c 4987 2006-01-26 00:25:21Z mike $"
+ * "$Id: ipp-support.c 5090 2006-02-08 17:08:01Z mike $"
  *
  *   Internet Printing Protocol support functions for the Common UNIX
  *   Printing System (CUPS).
@@ -55,7 +55,8 @@ static const char * const ipp_status_oks[] =  /* "OK" status codes */
                  "successful-ok-ignored-subscriptions",
                  "successful-ok-ignored-notifications",
                  "successful-ok-too-many-events",
-                 "successful-ok-but-cancel-subscription"
+                 "successful-ok-but-cancel-subscription",
+                 "successful-ok-events-complete"
                },
                * const ipp_status_400s[] =     /* Client errors */
                {
@@ -174,7 +175,7 @@ ippErrorString(ipp_status_t error)  /* I - Error status */
   * See if the error code is a known value...
   */
 
-  if (error >= IPP_OK && error <= IPP_OK_BUT_CANCEL_SUBSCRIPTION)
+  if (error >= IPP_OK && error <= IPP_OK_EVENTS_COMPLETE)
     return (ipp_status_oks[error]);
   else if (error == IPP_REDIRECTION_OTHER_SITE)
     return ("redirection-other-site");
@@ -326,5 +327,5 @@ ippSetPort(int p)                   /* I - Port number to use */
 
 
 /*
- * End of "$Id: ipp-support.c 4987 2006-01-26 00:25:21Z mike $".
+ * End of "$Id: ipp-support.c 5090 2006-02-08 17:08:01Z mike $".
  */