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

(-)file_not_specified_in_diff (-2 / +13 lines)
Line  Link Here
0
-- a/kdm/kfrontend/kgreeter.cpp.orig
0
++ b/kdm/kfrontend/kgreeter.cpp
Lines 83-88 Link Here
83
#include <sys/time.h>
83
#include <sys/time.h>
84
#include <termios.h>
84
#include <termios.h>
85
#include <signal.h>
85
#include <signal.h>
86
#include <libgen.h>
86
87
87
#include <X11/Xlib.h>
88
#include <X11/Xlib.h>
88
89
Lines 250-255 Link Here
250
	umask(0);
251
	umask(0);
251
	struct stat buffer;
252
	struct stat buffer;
252
	int status;
253
	int status;
254
	char *fifo_parent_dir = strdup(FIFO_DIR);
255
	dirname(fifo_parent_dir);
256
	status = stat(fifo_parent_dir, &buffer);
257
	if (status != 0) {
258
		mkdir(fifo_parent_dir, 0644);
259
	}
260
	free(fifo_parent_dir);
253
	status = stat(FIFO_DIR, &buffer);
261
	status = stat(FIFO_DIR, &buffer);
254
	if (status == 0) {
262
	if (status == 0) {
255
		int file_mode = ((buffer.st_mode & S_IRWXU) >> 6) * 100;
263
		int file_mode = ((buffer.st_mode & S_IRWXU) >> 6) * 100;
256
-- a/kdm/kfrontend/sakdlg.cc
264
++ b/kdm/kfrontend/sakdlg.cc
Lines 187-192 Link Here
187
		readbuf[numread] = 0;
187
		readbuf[numread] = 0;
188
		readbuf[2047] = 0;
188
		readbuf[2047] = 0;
189
		inputcommand += readbuf;
189
		inputcommand += readbuf;
190
		if (!tqApp->hasPendingEvents()) {
191
			usleep(500);
192
		}
190
		tqApp->processEvents();
193
		tqApp->processEvents();
191
	}
194
	}
192
	if (closingDown) {
195
	if (closingDown) {

Return to bug 690