Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 136201 | Differences between
and this patch

Collapse All | Expand All

(-)kdm/backend/client.c (-10 lines)
Lines 1537-1552 ReadDmrc() Link Here
1537
1542
1538
	if (!StrApp( &fname, p->pw_dir, "/.dmrc", (char *)0 ))
1543
	if (!StrApp( &fname, p->pw_dir, "/.dmrc", (char *)0 ))
1539
		return GE_Error;
1544
		return GE_Error;
1540
	if ((curdmrc = iniLoad( fname ))) {
1541
		free( fname );
1542
		return GE_Ok;
1543
	}
1544
1545
	if (errno != EACCES) {
1546
		free( fname );
1547
		return GE_NoFile;
1548
	}
1549
1550
	if (pipe( pfd ))
1545
	if (pipe( pfd ))
1551
		return GE_Error;
1546
		return GE_Error;
1552
	if ((pid = Fork()) < 0) {
1547
	if ((pid = Fork()) < 0) {

Return to bug 136201