summaryrefslogtreecommitdiff
path: root/common/execute.c
diff options
context:
space:
mode:
authorTed Lemon <source@isc.org>2000-07-06 10:04:03 +0000
committerTed Lemon <source@isc.org>2000-07-06 10:04:03 +0000
commit7530a0ab4e28b6591291b2e49b47f2fda1570e7a (patch)
tree7a91901d059c1c287190010ce10e7228c0778548 /common/execute.c
parent0e97ecc8520e2250129ee56828dc39415f281e5b (diff)
downloadisc-dhcp-7530a0ab4e28b6591291b2e49b47f2fda1570e7a.tar.gz
Remove obsolete use of now-uninitialized variable.
Diffstat (limited to 'common/execute.c')
-rw-r--r--common/execute.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/execute.c b/common/execute.c
index 00d6fd7f..2c7f6b57 100644
--- a/common/execute.c
+++ b/common/execute.c
@@ -43,7 +43,7 @@
#ifndef lint
static char copyright[] =
-"$Id: execute.c,v 1.33 2000/06/12 22:22:09 mellon Exp $ Copyright (c) 1998-2000 The Internet Software Consortium. All rights reserved.\n";
+"$Id: execute.c,v 1.34 2000/07/06 10:04:03 mellon Exp $ Copyright (c) 1998-2000 The Internet Software Consortium. All rights reserved.\n";
#endif /* not lint */
#include "dhcpd.h"
@@ -235,7 +235,7 @@ int execute_statements (packet, lease, in_options, out_options, scope,
#if defined (DEBUG_EXPRESSIONS)
log_debug ("exec: set %s", r -> data.set.name);
#endif
- if (!binding && status) {
+ if (!binding) {
binding = dmalloc (sizeof *binding, MDL);
if (binding) {
memset (binding, 0, sizeof *binding);