aboutsummaryrefslogtreecommitdiffstats
path: root/net/wide-dhcp
diff options
context:
space:
mode:
authorasami <asami@FreeBSD.org>1997-01-19 08:55:10 +0800
committerasami <asami@FreeBSD.org>1997-01-19 08:55:10 +0800
commit9e12813f6ceff8aa08bd471686c4235a4c920f03 (patch)
treefe201e351c24fc0098fd09e26ebe686c26c8d62e /net/wide-dhcp
parentbf037d78137e257d55fe27a583a690d5ffee068c (diff)
downloadfreebsd-ports-gnome-9e12813f6ceff8aa08bd471686c4235a4c920f03.tar.gz
freebsd-ports-gnome-9e12813f6ceff8aa08bd471686c4235a4c920f03.tar.zst
freebsd-ports-gnome-9e12813f6ceff8aa08bd471686c4235a4c920f03.zip
(1) This is a classic example of a "trivial fix" blowing up on one's face
unless you test it, Brian. :) (Directory path prefix was wrong.) (2) Also, this patch modifies the same file as patch-af, so I combined those two (see handbook).
Diffstat (limited to 'net/wide-dhcp')
-rw-r--r--net/wide-dhcp/files/patch-aw25
1 files changed, 0 insertions, 25 deletions
diff --git a/net/wide-dhcp/files/patch-aw b/net/wide-dhcp/files/patch-aw
deleted file mode 100644
index 10efc7ab63a6..000000000000
--- a/net/wide-dhcp/files/patch-aw
+++ /dev/null
@@ -1,25 +0,0 @@
-*** old/dhcp-1.3beta/server/dhcps.c Sun Nov 5 23:18:19 1995
---- new/dhcp-1.3beta/server/dhcps.c Fri Jan 17 17:14:54 1997
-***************
-*** 1583,1591 ****
-
- res = NULL;
- res = select_wcid(DHCPREQUEST, &cid, curr_epoch);
-! if (res != NULL && res->ip_addr != NULL &&
-! res->ip_addr->s_addr == reqip.s_addr)
-! goto ack;
- else if (reqforme == 1)
- goto nak;
- else
---- 1583,1593 ----
-
- res = NULL;
- res = select_wcid(DHCPREQUEST, &cid, curr_epoch);
-! if (res != NULL && res->ip_addr != NULL)
-! if (res->ip_addr->s_addr == reqip.s_addr)
-! goto ack;
-! else
-! goto nak;
- else if (reqforme == 1)
- goto nak;
- else