diff options
author | asami <asami@FreeBSD.org> | 1997-01-19 08:55:10 +0800 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1997-01-19 08:55:10 +0800 |
commit | 9e12813f6ceff8aa08bd471686c4235a4c920f03 (patch) | |
tree | fe201e351c24fc0098fd09e26ebe686c26c8d62e /net/wide-dhcp | |
parent | bf037d78137e257d55fe27a583a690d5ffee068c (diff) | |
download | freebsd-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-aw | 25 |
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 |