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

(-)kcontrol/tdm/tdm-shut.cpp.orig (+4 lines)
Lines 209-215 Link Here
209
209
210
  config->setGroup("Shutdown");
210
  config->setGroup("Shutdown");
211
  restart_lined->setURL(config->readEntry("RebootCmd", "/sbin/reboot"));
211
  restart_lined->setURL(config->readEntry("RebootCmd", "/sbin/reboot"));
212
#if defined(__OpenBSD__)
213
  shutdown_lined->setURL(config->readEntry("HaltCmd", "/sbin/halt -p"));
214
#else
212
  shutdown_lined->setURL(config->readEntry("HaltCmd", "/sbin/poweroff"));
215
  shutdown_lined->setURL(config->readEntry("HaltCmd", "/sbin/poweroff"));
216
#endif
213
217
214
  bm_combo->setCurrentId(config->readEntry("BootManager", "None"));
218
  bm_combo->setCurrentId(config->readEntry("BootManager", "None"));
215
}
219
}

Return to bug 2110