summaryrefslogtreecommitdiff
path: root/common/upf.c
diff options
context:
space:
mode:
authorTed Lemon <source@isc.org>2000-06-08 21:14:16 +0000
committerTed Lemon <source@isc.org>2000-06-08 21:14:16 +0000
commit68e1f67a18d9f0b2cf59e2ec8d29a2c998941b31 (patch)
tree2890fdd2a259013116bd99e8908dfbfb0099cc2f /common/upf.c
parent0baf2c4a68cffccd36260497d5d4fc29159c85d5 (diff)
downloadisc-dhcp-68e1f67a18d9f0b2cf59e2ec8d29a2c998941b31.tar.gz
- Fix a mistake that was causing the fallback interface not to be used (thanks
to Christof Chen for catching this!)
Diffstat (limited to 'common/upf.c')
-rw-r--r--common/upf.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/common/upf.c b/common/upf.c
index d590cbfd..10f8f236 100644
--- a/common/upf.c
+++ b/common/upf.c
@@ -43,7 +43,7 @@
#ifndef lint
static char copyright[] =
-"$Id: upf.c,v 1.18 2000/05/16 23:02:31 mellon Exp $ Copyright (c) 1996-2000 The Internet Software Consortium. All rights reserved.\n";
+"$Id: upf.c,v 1.19 2000/06/08 21:14:16 mellon Exp $ Copyright (c) 1996-2000 The Internet Software Consortium. All rights reserved.\n";
#endif /* not lint */
#include "dhcpd.h"
@@ -365,6 +365,7 @@ void maybe_setup_fallback ()
if (status != ISC_R_SUCCESS)
log_fatal ("Can't register I/O handle for %s: %s",
fbi -> name, isc_result_totext (status));
+ interface_dereference (&fbi, MDL);
}
}
#endif