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 860
Collapse All | Expand All

(-)tdelibs/tdecore/ktempfile.cpp (-1 / +1 lines)
Lines 233-239 Link Here
233
233
234
   if (mFd >= 0)
234
   if (mFd >= 0)
235
   {
235
   {
236
      if( qstrcmp( getenv( "KDE_EXTRA_FSYNC" ), "1" ) == 0 )
236
      if( qstrcmp( getenv( "TDE_EXTRA_FSYNC" ), "1" ) == 0 )
237
      {
237
      {
238
         result = FDATASYNC(mFd);
238
         result = FDATASYNC(mFd);
239
         if (result)
239
         if (result)

Return to bug 860