Changeset c9e9c9c


Ignore:
Timestamp:
2017-03-12T04:27:59Z (7 years ago)
Author:
dx <dx@…>
Branches:
master
Children:
0515063
Parents:
e7e6484
git-author:
Anthony Molinaro <anthonym@…> (13-02-17 22:17:02)
git-committer:
dx <dx@…> (12-03-17 04:27:59)
Message:

Another instance where PF_UNIX was used and shouldn't.

I couldn't find anyplace that actually enables the IPC, but I hand
edited the config.h to enable it, and did see the protocol not supported
failure, so modified this file and it went away.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • ipc.c

    re7e6484 rc9e9c9c  
    898898        strcpy(un_addr.sun_path, IPCSOCKET);
    899899
    900         serversock = socket(AF_UNIX, SOCK_STREAM, PF_UNIX);
     900        serversock = socket(AF_UNIX, SOCK_STREAM, 0);
    901901
    902902        if (serversock == -1) {
Note: See TracChangeset for help on using the changeset viewer.