1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-31 21:57:12 +00:00
freebsd-ports/comms/plp/files/patch-ac
Jeremy Lea 915047b6af Initial import of Psion Link Protocol 1.8.
This program is used to transfer data between a Psion Series 5mx
(default) or Psion Series 5 to a Unix server.  The ncp daemon is
started to communicate with the Psion and an ftp like interface is
provided by rfsv.

PR:		15181
Submitted by:	Maurice Castro <maurice@atum.castro.aus.net>
2000-01-29 07:53:11 +00:00

16 lines
312 B
Plaintext

--- utils/ppsocket.cc.orig Wed Jan 26 20:45:31 2000
+++ utils/ppsocket.cc Wed Jan 26 20:45:54 2000
@@ -198,7 +198,11 @@
ppsocket* ppsocket::accept(char* Peer, int MaxLen)
{
- int len;
+#if __FreeBSD_version >= 400013
+ socklen_t len;
+#else
+ unsigned len;
+#endif
ppsocket* accepted;
char* peer;