mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
915047b6af
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>
21 lines
500 B
Plaintext
21 lines
500 B
Plaintext
--- rfsv/main.cc.orig Mon Apr 12 14:32:31 1999
|
|
+++ rfsv/main.cc Wed Jan 26 20:44:56 2000
|
|
@@ -107,7 +107,7 @@
|
|
|
|
skt = new ppsocket();
|
|
skt->startup();
|
|
- res = skt->connect(NULL, sockNum);
|
|
+ res = skt->connect("127.0.0.1", sockNum);
|
|
if (!res) {
|
|
delete skt;
|
|
|
|
@@ -120,7 +120,7 @@
|
|
usleep(100000);
|
|
skt = new ppsocket();
|
|
skt->startup();
|
|
- res = skt->connect(NULL, sockNum);
|
|
+ res = skt->connect("127.0.0.1", sockNum);
|
|
if (!res) delete skt;
|
|
}
|
|
|