diff options
author | Ted Lemon <source@isc.org> | 1999-02-23 22:12:17 +0000 |
---|---|---|
committer | Ted Lemon <source@isc.org> | 1999-02-23 22:12:17 +0000 |
commit | e3dfffc18bad857d874fc652057d05bd3fce938d (patch) | |
tree | 939294d4d05c83a6bc709148ecd0b95225ba42e4 | |
parent | b1ae7a094c0c8fcd65cc45f182cd60162e10439a (diff) | |
download | isc-dhcp-e3dfffc18bad857d874fc652057d05bd3fce938d.tar.gz |
Add missing brace.
-rw-r--r-- | server/dhcp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/dhcp.c b/server/dhcp.c index 994d6bc3..7c92eabe 100644 --- a/server/dhcp.c +++ b/server/dhcp.c @@ -42,7 +42,7 @@ #ifndef lint static char copyright[] = -"$Id: dhcp.c,v 1.57.2.18 1999/02/23 17:47:05 mellon Exp $ Copyright (c) 1995, 1996, 1997, 1998, 1999 The Internet Software Consortium. All rights reserved.\n"; +"$Id: dhcp.c,v 1.57.2.19 1999/02/23 22:12:17 mellon Exp $ Copyright (c) 1995, 1996, 1997, 1998, 1999 The Internet Software Consortium. All rights reserved.\n"; #endif /* not lint */ #include "dhcpd.h" @@ -1454,7 +1454,7 @@ struct lease *find_lease (packet, share, ours) uid_lease = (struct lease *)0; } if (hw_lease && - (share != hw_lease -> shared_network)) + (share != hw_lease -> shared_network)) { if (packet -> packet_type == DHCPREQUEST) release_lease (hw_lease); hw_lease = (struct lease *)0; |