Changeset 4c225f0 for ipc.c


Ignore:
Timestamp:
2011-10-20T03:18:23Z (13 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
6a45181
Parents:
32bea82
Message:

Drop the on-disk IPC socket by default. Nothing uses it. If one really wants
it, it can be restored using the --ipcsocket= configure option.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • ipc.c

    r32bea82 r4c225f0  
    909909        int serversock;
    910910
     911        if (!IPCSOCKET || !*IPCSOCKET)
     912                return 1;
     913
    911914        /* Clean up old socket files that were hanging around.. */
    912915        if (unlink(IPCSOCKET) == -1 && errno != ENOENT) {
Note: See TracChangeset for help on using the changeset viewer.