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

(-)tdebase/kdesktop/lock/lockprocess.cc (-1 / +1 lines)
Lines 2850-2856 Link Here
2850
2850
2851
	/* Create the FIFOs if they do not exist */
2851
	/* Create the FIFOs if they do not exist */
2852
	umask(0);
2852
	umask(0);
2853
	mkdir(FIFO_DIR,0644);
2853
	mkdir(FIFO_DIR,0755);
2854
	mknod(fifo_file, S_IFIFO|0644, 0);
2854
	mknod(fifo_file, S_IFIFO|0644, 0);
2855
	chmod(fifo_file, 0644);
2855
	chmod(fifo_file, 0644);
2856
	
2856
	
(-)tdebase/tsak/main.cpp (-2 / +2 lines)
Lines 331-337 Link Here
331
{
331
{
332
	/* Create the FIFOs if they do not exist */
332
	/* Create the FIFOs if they do not exist */
333
	umask(0);
333
	umask(0);
334
	mkdir(FIFO_DIR,0644);
334
	mkdir(FIFO_DIR,0755);
335
335
336
	mknod(FIFO_FILE_OUT, S_IFIFO|0600, 0);
336
	mknod(FIFO_FILE_OUT, S_IFIFO|0600, 0);
337
	chmod(FIFO_FILE_OUT, 0600);
337
	chmod(FIFO_FILE_OUT, 0600);
Lines 349-355 Link Here
349
{
349
{
350
	/* Create the FIFOs as they may not exist */
350
	/* Create the FIFOs as they may not exist */
351
	umask(0);
351
	umask(0);
352
	mkdir(FIFO_DIR,0644);
352
	mkdir(FIFO_DIR,0755);
353
353
354
	mknod(FIFO_LOCKFILE_OUT, 0600, 0);
354
	mknod(FIFO_LOCKFILE_OUT, 0600, 0);
355
	chmod(FIFO_LOCKFILE_OUT, 0600);
355
	chmod(FIFO_LOCKFILE_OUT, 0600);

Return to bug 2123