summaryrefslogtreecommitdiff
path: root/cups/http-support.c
diff options
context:
space:
mode:
authorMichael Sweet <michael.r.sweet@gmail.com>2017-12-08 19:16:48 -0500
committerMichael Sweet <michael.r.sweet@gmail.com>2017-12-08 19:16:48 -0500
commit034b06df8f58587e676950c9222d7e95b0a192a2 (patch)
tree1f25daee6991c30a7a1efad00c22a000e1f93784 /cups/http-support.c
parentaa0309120dba2ea538ea7c1bc1eeb6d42bbd3a89 (diff)
downloadcups-034b06df8f58587e676950c9222d7e95b0a192a2.tar.gz
Rename HTTP_STATUS_REDIRECT_TEMPORARILY to HTTP_STATUS_FOUND, to match RFC 7231.
(still have a define for the old name...)
Diffstat (limited to 'cups/http-support.c')
-rw-r--r--cups/http-support.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cups/http-support.c b/cups/http-support.c
index c49df399b..ca8fc87a1 100644
--- a/cups/http-support.c
+++ b/cups/http-support.c
@@ -1351,8 +1351,8 @@ _httpStatus(cups_lang_t *lang, /* I - Language */
case HTTP_STATUS_MOVED_PERMANENTLY :
s = _("Moved Permanently");
break;
- case HTTP_STATUS_MOVED_TEMPORARILY :
- s = _("Moved Temporarily");
+ case HTTP_STATUS_FOUND :
+ s = _("Found");
break;
case HTTP_STATUS_SEE_OTHER :
s = _("See Other");