summaryrefslogtreecommitdiff
path: root/net-mgmt
diff options
context:
space:
mode:
authorSatoshi Asami <asami@FreeBSD.org>1997-01-19 00:55:10 +0000
committerSatoshi Asami <asami@FreeBSD.org>1997-01-19 00:55:10 +0000
commitab0b8fd5155b41fcf5b6f60ce7e6dfdd8cae4a23 (patch)
tree3882dfe1f07c265c0d242885998cd714552c7a40 /net-mgmt
parentChange pre-patch rule slightly to extract everything under ${WRKSRC}, (diff)
(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).
Notes
Notes: svn path=/head/; revision=5381
Diffstat (limited to 'net-mgmt')
-rw-r--r--net-mgmt/wide-dhcp/files/patch-aw25
1 files changed, 0 insertions, 25 deletions
diff --git a/net-mgmt/wide-dhcp/files/patch-aw b/net-mgmt/wide-dhcp/files/patch-aw
deleted file mode 100644
index 10efc7ab63a6..000000000000
--- a/net-mgmt/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