By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 1708
Collapse All | Expand All

(-)tdelibs/tdeio/tdeio/kdirwatch.cpp (-1 / +1 lines)
Lines 744-750 Link Here
744
744
745
bool KDirWatchPrivate::useStat(Entry* e)
745
bool KDirWatchPrivate::useStat(Entry* e)
746
{
746
{
747
  if ( e->path.path().startsWith("/media/") || (e->path.path() == "/media")
747
  if ( e->path.path().startsWith("/media/") || e->path.path().startsWith("/run/") || (e->path.path() == "/media")
748
       || (TDEIO::probably_slow_mounted(e->path.path())) )
748
       || (TDEIO::probably_slow_mounted(e->path.path())) )
749
    useFreq(e, m_nfsPollInterval);
749
    useFreq(e, m_nfsPollInterval);
750
  else
750
  else

Return to bug 1708