]> git.ipfire.org Git - thirdparty/cups.git/commitdiff
Add support for pause and wait characters in fax numbers (rdar://39212256)
authorMichael R Sweet <michael.r.sweet@gmail.com>
Tue, 17 Apr 2018 16:47:00 +0000 (12:47 -0400)
committerMichael R Sweet <michael.r.sweet@gmail.com>
Tue, 17 Apr 2018 16:47:00 +0000 (12:47 -0400)
CHANGES.md
backend/ipp.c

index 3d0f4f1239ec1ffa4c11bf802a2cb0e5e5b69e2e..a5db51309c8693f14058d665a2faec2e85050335 100644 (file)
@@ -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.
 
 
index 5a86eff81566a7287c761dba60fde5a71378ca5c..42b72d56bfdd9772813f38006bc87b079ef3b153 100644 (file)
@@ -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();