mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-05 06:27:37 +00:00
12f56a38a7
* Use more bsd.port.mk convenience switches. * Use rc.subr properly for spread daemon. * Write a logfile rather than spewing to stdio. * Move rendezvous socket to /var/run. * Make Makefile.PL behave properly with PREFIX. PR: ports/60053 Submitted by: Joshua Goodall <joshua@roughtrade.net>
12 lines
541 B
C
12 lines
541 B
C
--- sp.c Tue Aug 5 21:35:28 2003
|
|
+++ sp.c Tue Aug 5 21:24:19 2003
|
|
@@ -551,7 +551,7 @@
|
|
Alarm( SESSION, "SP_connect: set sndbuf/rcvbuf to %d\n", 1024*(i-5) );
|
|
|
|
unix_addr.sun_family = AF_UNIX;
|
|
- sprintf( unix_addr.sun_path, "/tmp/%d", port );
|
|
+ sprintf( unix_addr.sun_path, "%s/spread.sock", _PATH_SPREAD_PIDDIR );
|
|
while( ((ret = connect( s, (struct sockaddr *)&unix_addr, sizeof(unix_addr) )) == -1)
|
|
&& ((sock_errno == EINTR) || (sock_errno == EAGAIN) || (sock_errno == EWOULDBLOCK)) )
|
|
{
|