2010-01-29 20:14 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)

* contrib/hbtpathy/telepath.prg
    ! Fixed typo in commented code in prev commit.
This commit is contained in:
Viktor Szakats
2010-01-29 19:15:16 +00:00
parent 56de51fe3a
commit 23f50f516e
2 changed files with 5 additions and 1 deletions

View File

@@ -17,6 +17,10 @@
past entries belonging to author(s): Viktor Szakats.
*/
2010-01-29 20:14 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
* contrib/hbtpathy/telepath.prg
! Fixed typo in commented code in prev commit.
2010-01-29 20:11 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
* contrib/hbtpathy/telepath.prg
! Fixed "midnight bug" in several TP functions having timeout option

View File

@@ -661,7 +661,7 @@ FUNCTION tp_flush( nPort, nTimeout )
// Sleep rest of timeout
/*
IF nTimeout > 0 .AND. __tp_timeelapsed( nStartSec, Seconds() ) > nTimeout
IF nTimeout > 0 .AND. nTimeout > __tp_timeelapsed( nStartSec, Seconds() )
hb_idleSleep( nTimeout - __tp_timeelapsed( nStartSec, Seconds() ) )
ENDIF
*/