summaryrefslogtreecommitdiff
path: root/cups/http-support.c
diff options
context:
space:
mode:
authorMichael Sweet <michael.r.sweet@gmail.com>2017-12-08 18:43:06 -0500
committerMichael Sweet <michael.r.sweet@gmail.com>2017-12-08 18:43:24 -0500
commitaa0309120dba2ea538ea7c1bc1eeb6d42bbd3a89 (patch)
treed78a80c81a6bfbb5d2211b4e667040fe38d7b31b /cups/http-support.c
parent060016a0564b2c8f12c02100942109eef80ae019 (diff)
downloadcups-aa0309120dba2ea538ea7c1bc1eeb6d42bbd3a89.tar.gz
Add missing HTTP status message for 302 (moved temporarily).
Diffstat (limited to 'cups/http-support.c')
-rw-r--r--cups/http-support.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/cups/http-support.c b/cups/http-support.c
index 95135e049..c49df399b 100644
--- a/cups/http-support.c
+++ b/cups/http-support.c
@@ -1351,6 +1351,9 @@ _httpStatus(cups_lang_t *lang, /* I - Language */
case HTTP_STATUS_MOVED_PERMANENTLY :
s = _("Moved Permanently");
break;
+ case HTTP_STATUS_MOVED_TEMPORARILY :
+ s = _("Moved Temporarily");
+ break;
case HTTP_STATUS_SEE_OTHER :
s = _("See Other");
break;