From: mike Date: Tue, 25 Oct 2011 23:03:35 +0000 (+0000) Subject: Fix typo. X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6fb13871d614af33676976fab0712f4083a8868f;p=thirdparty%2Fcups.git Fix typo. git-svn-id: svn+ssh://src.apple.com/svn/cups/cups.org/trunk@10091 7a7537e8-13f0-0310-91df-b6672ffda945 --- diff --git a/test/run-stp-tests.sh b/test/run-stp-tests.sh index 54b53695ec..be213d2c5d 100755 --- a/test/run-stp-tests.sh +++ b/test/run-stp-tests.sh @@ -235,14 +235,14 @@ case "$usedebugprintfs" in echo "Enabling debug printfs; log files can be found in /tmp/cups-$user/log..." CUPS_DEBUG_LOG="/tmp/cups-$user/log/debug_printfs.%d"; export CUPS_DEBUG_LOG CUPS_DEBUG_LEVEL=5; export CUPS_DEBUG_LEVEL - CUPS_DEBUG_FILTER='^(http|_http|ipp|_ipp|cups.*Request|cupsGetRespond|cupsSend).*$'; export CUPS_DEBUG_FILTER + CUPS_DEBUG_FILTER='^(http|_http|ipp|_ipp|cups.*Request|cupsGetResponse|cupsSend).*$'; export CUPS_DEBUG_FILTER ;; 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9) echo "Enabling debug printfs; log files can be found in /tmp/cups-$user/log..." CUPS_DEBUG_LOG="/tmp/cups-$user/log/debug_printfs.%d"; export CUPS_DEBUG_LOG CUPS_DEBUG_LEVEL=$usedebugprintf; export CUPS_DEBUG_LEVEL - CUPS_DEBUG_FILTER='^(http|_http|ipp|_ipp|cups.*Request|cupsGetRespond|cupsSend).*$'; export CUPS_DEBUG_FILTER + CUPS_DEBUG_FILTER='^(http|_http|ipp|_ipp|cups.*Request|cupsGetResponse|cupsSend).*$'; export CUPS_DEBUG_FILTER ;; *)