diff options
author | ijliao <ijliao@FreeBSD.org> | 2001-04-15 06:53:11 +0000 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2001-04-15 06:53:11 +0000 |
commit | d53d0314ac3a8b267f337944ebadd3a9482c3b57 (patch) | |
tree | 84338836dc68633403651b5d7b838ce38af9efdc /net/delegate/files | |
parent | b779998db5eaffa6ba145ae019b5696d4f254e2e (diff) | |
download | FreeBSD-ports-d53d0314ac3a8b267f337944ebadd3a9482c3b57.zip FreeBSD-ports-d53d0314ac3a8b267f337944ebadd3a9482c3b57.tar.gz |
upgrade to 7.1.2, it's not in-secure now
PR: 26088
Submitted by: ijliao (me)
No Response from: maintainer
Diffstat (limited to 'net/delegate/files')
-rw-r--r-- | net/delegate/files/patch-aa | 39 | ||||
-rw-r--r-- | net/delegate/files/patch-aj | 7 | ||||
-rw-r--r-- | net/delegate/files/patch-ak | 7 |
3 files changed, 0 insertions, 53 deletions
diff --git a/net/delegate/files/patch-aa b/net/delegate/files/patch-aa deleted file mode 100644 index 914a4c3..0000000 --- a/net/delegate/files/patch-aa +++ /dev/null @@ -1,39 +0,0 @@ ---- src/lock.c.orig Mon Mar 15 19:24:15 1999 -+++ src/lock.c Sun Apr 18 15:26:15 1999 -@@ -136,6 +136,22 @@ - break; - } - -+#ifdef EWOULDBLOCK -+ /* -+ * Only retry the lock if it was busy. Other -+ * possible sources for the lock to fail are: -+ * invalid argument, bad filedescriptor, and -+ * operation not supported by device. The latter -+ * happens if you start DeleGateD with -v, so it -+ * logs to stderr (which usually doesn't support -+ * locking at all). -+ */ -+ if (rcode == -1 && errno != EWOULDBLOCK) { -+ /* pretend lock succeeded */ -+ rcode = 0; -+ break; -+ } -+#endif - remain = timeout - elapsed; - if( remain <= 0 ) - break; -@@ -146,6 +162,13 @@ - - start = Time(); - rcode = callFuncTimeout(remain/1000,-1,func,fd); -+#ifdef EWOULDBLOCK -+ if (rcode == -1 && errno != EWOULDBLOCK) { -+ /* pretend lock succeeded */ -+ rcode = 0; -+ break; -+ } -+#endif - elapse1 = (Time() - start) * 1000; - /*{ - static int n; diff --git a/net/delegate/files/patch-aj b/net/delegate/files/patch-aj deleted file mode 100644 index 55cf79d..0000000 --- a/net/delegate/files/patch-aj +++ /dev/null @@ -1,7 +0,0 @@ ---- maker/__fork.c.orig Tue Jun 3 22:56:42 1997 -+++ maker/__fork.c Sun Oct 29 22:32:55 2000 -@@ -1,3 +1,4 @@ -+#include <sys/types.h> - #include <sys/wait.h> - - INHERENT_fork(){ return 1; } diff --git a/net/delegate/files/patch-ak b/net/delegate/files/patch-ak deleted file mode 100644 index 960895f..0000000 --- a/net/delegate/files/patch-ak +++ /dev/null @@ -1,7 +0,0 @@ ---- maker/spawnvp_.c.orig Thu Jun 19 02:40:16 1997 -+++ maker/spawnvp_.c Sun Oct 29 22:32:55 2000 -@@ -1,3 +1,4 @@ -+#include <sys/types.h> - #include <sys/wait.h> - - INHERENT_spawn(){ return 0; } |