summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES.md4
-rw-r--r--backend/ipp.c2
2 files changed, 4 insertions, 2 deletions
diff --git a/CHANGES.md b/CHANGES.md
index 3d0f4f123..a5db51309 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,4 +1,4 @@
-CHANGES - 2.3rc1 - 2018-04-16
+CHANGES - 2.3rc1 - 2018-04-17
=============================
Changes in CUPS v2.3rc1
@@ -12,6 +12,8 @@ Changes in CUPS v2.3rc1
(Issue #5290)
- Added a workaround for certain web browsers that do not support multiple
authentication schemes in a single response header (Issue #5289)
+- Fax queues did not support pause (p) or wait-for-dialtone (w) characters
+ (rdar://39212256)
- Fixed a parsing bug in the new authentication code.
diff --git a/backend/ipp.c b/backend/ipp.c
index 5a86eff81..42b72d56b 100644
--- a/backend/ipp.c
+++ b/backend/ipp.c
@@ -2780,7 +2780,7 @@ new_request(
char phone[1024], /* Phone number string */
*ptr, /* Pointer into string */
tel_uri[1024]; /* tel: URI */
- static const char * const allowed = "0123456789#*-+.()";
+ static const char * const allowed = "0123456789#*-+.()pw";
/* Allowed characters */
destination = ippNew();