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 (-11 lines)
Lines 1607-1623 ReadDmrc () Link Here
1607
1607
1608
    if (!StrApp (&fname, p->pw_dir, "/.dmrc", (char *)0))
1608
    if (!StrApp (&fname, p->pw_dir, "/.dmrc", (char *)0))
1609
	return GE_Error;
1609
	return GE_Error;
1610
    if ((curdmrc = iniLoad (fname))) {
1611
	free (fname);
1612
	return GE_Ok;
1613
    }
1614
1615
    /* on POSIX systems only EACCES can be returned - 
1616
       I leave the EPERM here just because I don't know all non-POSIX systems */
1617
    if (errno != EACCES && errno != EPERM) {
1618
	free (fname);
1619
	return GE_NoFile;
1620
    }
1621
1610
1622
    if (pipe (pfd))
1611
    if (pipe (pfd))
1623
	return GE_Error;
1612
	return GE_Error;

Return to bug 136201