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

(-)tdelibs/tdeinit/tdeinit.cpp (-3 / +5 lines)
Lines 1350-1358 Link Here
1350
        exit_pid = waitpid(-1, 0, WNOHANG);
1350
        exit_pid = waitpid(-1, 0, WNOHANG);
1351
        if (exit_pid > 0)
1351
        if (exit_pid > 0)
1352
        {
1352
        {
1353
#ifndef NDEBUG
1353
//#ifndef NDEBUG
1354
           fprintf(stderr, "[tdeinit] PID %ld terminated.\n", (long) exit_pid);
1354
           // Replaced original fprintf with kdDebug. Commented out to reduce output spew.
1355
#endif
1355
           // fprintf(stderr, "[tdeinit] PID %ld terminated.\n", (long) exit_pid);
1356
           // kdDebug() << "[tdeinit] PID " << (long) exit_pid << "terminated.\n" << endl;
1357
//#endif
1356
           if (waitForPid && (exit_pid == waitForPid))
1358
           if (waitForPid && (exit_pid == waitForPid))
1357
              return;
1359
              return;
1358
1360

Return to bug 888