summaryrefslogtreecommitdiff
path: root/net/sendfile/patches
diff options
context:
space:
mode:
authorhwr <hwr@pkgsrc.org>1999-06-06 17:08:36 +0000
committerhwr <hwr@pkgsrc.org>1999-06-06 17:08:36 +0000
commit09574e254e244a3074acd1593a17102edaca1886 (patch)
treed375608b2025fa83182918483bca91f13c44d6af /net/sendfile/patches
parente1d75be620fed22fba681fa03a394faeec6f4584 (diff)
downloadpkgsrc-09574e254e244a3074acd1593a17102edaca1886.tar.gz
Reference implementation of the SAFT (simple asynchronous file
transfer) protocol. Sendfile allows to send arbitrary files to a remote user. This ist version 2.1 of sendfile.
Diffstat (limited to 'net/sendfile/patches')
-rw-r--r--net/sendfile/patches/patch-aa19
-rw-r--r--net/sendfile/patches/patch-ab13
2 files changed, 32 insertions, 0 deletions
diff --git a/net/sendfile/patches/patch-aa b/net/sendfile/patches/patch-aa
new file mode 100644
index 00000000000..a584959ee3a
--- /dev/null
+++ b/net/sendfile/patches/patch-aa
@@ -0,0 +1,19 @@
+$NetBSD: patch-aa,v 1.1.1.1 1999/06/06 17:08:37 hwr Exp $
+
+--- makeconfig.orig Tue Jul 14 12:52:25 1998
++++ makeconfig Sun Jun 6 17:05:23 1999
+@@ -16,10 +16,10 @@
+
+ # default installation settings
+ SPOOL=/var/spool/sendfile
+-BINDIR=/usr/local/bin
+-MANDIR=/usr/local/man
+-CONFIG=/usr/local/etc
+-SERVERDIR=/usr/local/sbin
++BINDIR=@PREFIX@/bin
++MANDIR=@PREFIX@/man
++CONFIG=@PREFIX@/etc
++SERVERDIR=@PREFIX@/sbin
+ INETDCONF=/etc/inetd.conf
+ SERVICES=/etc/services
+
diff --git a/net/sendfile/patches/patch-ab b/net/sendfile/patches/patch-ab
new file mode 100644
index 00000000000..67940b504fc
--- /dev/null
+++ b/net/sendfile/patches/patch-ab
@@ -0,0 +1,13 @@
+$NetBSD: patch-ab,v 1.1.1.1 1999/06/06 17:08:37 hwr Exp $
+
+--- src/sendfiled.c Sun Jun 6 18:31:25 1999
++++ src/sendfiled.c.orig Thu Oct 29 17:48:08 1998
+@@ -2945,7 +2945,7 @@
+ exit(1);
+ }
+ if (wlock_file(lockf)<0) {
+- snprintf(MAXS(tmp),"cannot lock %s : %s",lockfn,strerror(errno));
++ snprintf(MAXS(tmp),"cannot lock %s : ",lockfn,strerror(errno));
+ dbgout(tmp);
+ exit(1);
+ }