Ticket #518: mythdiseqcretry.diff

File mythdiseqcretry.diff, 526 bytes (added by Dibblahmythml0015@…, 18 years ago)

Patch for the above issue

  • libs/libmythtv/dvbchannel.cpp

     
    769769    t.params.frequency = tuned_frequency(ct, FE_QPSK, &t.tone);
    770770
    771771    for (uint i = 0; i < 64 && !tuned; i++)
    772         if (!diseqc->Set(t, reset, tuned))
    773             return false;
     772        if (diseqc->Set(t, reset, tuned))
     773            return true;
    774774       
    775     return true;
     775    return false;
    776776}