]> git.ipfire.org Git - thirdparty/HylaFAX.git/commitdiff
Bug 584: fix sendPoll() from being invoked at the end of
authorLee Howard <faxguy@howardsilvan.com>
Thu, 2 Dec 2004 21:13:11 +0000 (21:13 +0000)
committerLee Howard <faxguy@howardsilvan.com>
Thu, 2 Dec 2004 21:13:11 +0000 (21:13 +0000)
         every successful fax send

CHANGES
faxd/FaxRequest.c++

diff --git a/CHANGES b/CHANGES
index 41ef3c8ee57c1577320d7a15bb9451364507e625..8578fe21dc14c92570d85b06a6f7ac3d760ae4b4 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -11,7 +11,7 @@ Changelog for HylaFAX 4.2.1
 * document -age option for recvstats/xferfaxstats (23 Nov 2004)
 * add coversheet information into the q-file (23 Nov 2004)
 * fix documentation regarding DesiredEC (23 Nov 2004)
-* change minsp to minbr for consistency (23 Nov 2004)
+* change minsp to minbr for consistency (23 Nov, 2 Dec 2004)
 * fix hfaxd problem with file descriptors (23 Nov 2004)
 * fix hfaxd from dying on ECONNABORTED (23 Nov 2004)
 * add -fpic to DSO build for non-x86 Linux (23 Nov 2004)
index 1cf04298657040645b92e0f39b8596f0848f687f..da18359f74269ee7650504d1a805a9c6af1af2ad 100644 (file)
@@ -346,7 +346,7 @@ FaxRequest::readQFile(bool& rejectJob)
 
        case H_RETURNED:        status = (FaxSendStatus) atoi(tag); break;
        case H_POLL:            // H_MINBR collides
-           if (cmd[1] == 'm')
+           if (cmd[0] == 'm')
                minbr = atoi(tag);
            else
                addItem(send_poll, tag); break;