From: msweet Date: Fri, 20 Nov 2015 02:32:42 +0000 (+0000) Subject: Add missing client-error-not-fetchable status code. X-Git-Tag: v2.2b1~143 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c47d48694a94307025f23eeb306e8b06054e3073;p=thirdparty%2Fcups.git Add missing client-error-not-fetchable status code. git-svn-id: svn+ssh://src.apple.com/svn/cups/cups.org/trunk@12995 a1ca3aef-8c08-0410-bb20-df032aa958be --- diff --git a/cups/ipp-support.c b/cups/ipp-support.c index c5f84de86e..f7a61e6a4b 100644 --- a/cups/ipp-support.c +++ b/cups/ipp-support.c @@ -78,7 +78,8 @@ static const char * const ipp_status_oks[] = /* "OK" status codes */ "client-error-account-info-needed", "client-error-account-closed", "client-error-account-limit-reached", - "client-error-account-authorization-failed" + "client-error-account-authorization-failed", + "client-error-not-fetchable" }, * const ipp_status_480s[] = /* Vendor client errors */ { diff --git a/cups/ipp.h b/cups/ipp.h index 3432478f1b..3461d658e4 100644 --- a/cups/ipp.h +++ b/cups/ipp.h @@ -536,6 +536,7 @@ typedef enum ipp_status_e /**** IPP status codes ****/ /* client-error-account-limit-reached */ IPP_STATUS_ERROR_ACCOUNT_AUTHORIZATION_FAILED, /* client-error-account-authorization-failed */ + IPP_STATUS_ERROR_NOT_FETCHABLE, /* client-error-not-fetchable */ /* Legacy status codes for paid printing */ IPP_STATUS_ERROR_CUPS_ACCOUNT_INFO_NEEDED = 0x049C,