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/kinit/kinit.cpp (-2 / +2 lines)
Lines 1227-1233 Link Here
1227
1227
1228
      // support for the old a bit broken way of setting DISPLAY for multihead
1228
      // support for the old a bit broken way of setting DISPLAY for multihead
1229
      TQCString olddisplay = getenv(DISPLAY);
1229
      TQCString olddisplay = getenv(DISPLAY);
1230
      TQCString kdedisplay = getenv("KDE_DISPLAY");
1230
      TQCString kdedisplay = getenv("TDE_DISPLAY");
1231
      bool reset_display = (! olddisplay.isEmpty() &&
1231
      bool reset_display = (! olddisplay.isEmpty() &&
1232
                            ! kdedisplay.isEmpty() &&
1232
                            ! kdedisplay.isEmpty() &&
1233
                            olddisplay != kdedisplay);
1233
                            olddisplay != kdedisplay);
Lines 1240-1246 Link Here
1240
          tty, avoid_loops, startup_id_str );
1240
          tty, avoid_loops, startup_id_str );
1241
1241
1242
      if (reset_display) {
1242
      if (reset_display) {
1243
          unsetenv("KDE_DISPLAY");
1243
          unsetenv("TDE_DISPLAY");
1244
          setenv(DISPLAY, olddisplay, true);
1244
          setenv(DISPLAY, olddisplay, true);
1245
      }
1245
      }
1246
1246

Return to bug 860