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

(-)dcop/dcopclient.cpp.ORI (+4 lines)
Lines 717-723 Link Here
717
// Check whether the remote end is owned by the same user.
717
// Check whether the remote end is owned by the same user.
718
static bool peerIsUs(int sockfd)
718
static bool peerIsUs(int sockfd)
719
{
719
{
720
#if defined(__OpenBSD__)
721
    struct sockpeercred cred;
722
#else
720
    struct ucred cred;
723
    struct ucred cred;
724
#endif
721
    socklen_t siz = sizeof(cred);
725
    socklen_t siz = sizeof(cred);
722
    if (getsockopt(sockfd, SOL_SOCKET, SO_PEERCRED, &cred, &siz) != 0)
726
    if (getsockopt(sockfd, SOL_SOCKET, SO_PEERCRED, &cred, &siz) != 0)
723
        return false;
727
        return false;

Return to bug 2109