summaryrefslogtreecommitdiff
path: root/net/vtun/patches
diff options
context:
space:
mode:
authorkleink <kleink@pkgsrc.org>2000-06-06 07:21:46 +0000
committerkleink <kleink@pkgsrc.org>2000-06-06 07:21:46 +0000
commitd62ec855f3f365950439f42d408423ba4808d969 (patch)
treec45a5d5324e32233456d813a3a4a6f26216c14d7 /net/vtun/patches
parentd02914d440d050a0bb792c308208317567b2632b (diff)
downloadpkgsrc-d62ec855f3f365950439f42d408423ba4808d969.tar.gz
Update to vtun-2.3; besides a vtund.conf(5) manual page, changes include:
ver 2.3: Fixed incorrect error handling in UDP and TCP drivers. Makefile improvements. RPM package fixes. Persist mode fixes. Fixed a couple of memory and file descriptor leaks. Correct closing of Solaris TUN device. Added man page for the configuration file. Documentation update. Team members list update.
Diffstat (limited to 'net/vtun/patches')
-rw-r--r--net/vtun/patches/patch-aa16
1 files changed, 8 insertions, 8 deletions
diff --git a/net/vtun/patches/patch-aa b/net/vtun/patches/patch-aa
index eeff5acd13b..0ab11b3beb0 100644
--- a/net/vtun/patches/patch-aa
+++ b/net/vtun/patches/patch-aa
@@ -1,8 +1,8 @@
-$NetBSD: patch-aa,v 1.1.1.1 2000/02/07 01:37:35 hubertf Exp $
+$NetBSD: patch-aa,v 1.2 2000/06/06 07:21:47 kleink Exp $
---- Makefile.in.BAK Fri Feb 4 04:59:50 2000
-+++ Makefile.in Fri Feb 4 05:03:27 2000
-@@ -24,7 +24,7 @@
+--- Makefile.in.orig Mon May 29 15:35:11 2000
++++ Makefile.in Tue Jun 6 08:58:08 2000
+@@ -36,7 +36,7 @@
SBIN_DIR = @sbindir@
MAN_DIR = @mandir@
ETC_DIR = @sysconfdir@
@@ -11,11 +11,11 @@ $NetBSD: patch-aa,v 1.1.1.1 2000/02/07 01:37:35 hubertf Exp $
PID_FILE = ${VAR_DIR}/run/vtund.pid
CFG_FILE = ${ETC_DIR}/vtund.conf
-@@ -110,6 +110,7 @@
+@@ -88,6 +88,7 @@
install_config:
- $(INSTALL) -d -m 755 -o root -g 0 $(ETC_DIR)
-+ $(INSTALL) -m 600 -o root -g 0 vtund.conf $(ETC_DIR)/vtund.conf.example; \
+ $(INSTALL) -d -m 755 $(INSTALL_OWNER) $(ETC_DIR)
++ $(INSTALL) -m 600 $(INSTALL_OWNER) vtund.conf $(ETC_DIR)/vtund.conf.example; \
if [ ! -f $(ETC_DIR)/vtund.conf ]; then \
- $(INSTALL) -m 600 -o root -g 0 vtund.conf $(ETC_DIR); \
+ $(INSTALL) -m 600 $(INSTALL_OWNER) vtund.conf $(ETC_DIR); \
fi