#ifndef lint
static char copyright[] =
-"$Id: execute.c,v 1.43 2001/01/03 23:15:33 mellon Exp $ Copyright (c) 1998-2000 The Internet Software Consortium. All rights reserved.\n";
+"$Id: execute.c,v 1.44 2001/01/16 22:56:56 mellon Exp $ Copyright (c) 1998-2000 The Internet Software Consortium. All rights reserved.\n";
#endif /* not lint */
#include "dhcpd.h"
return 1;
case supersede_option_statement:
+ case send_option_statement:
#if defined (DEBUG_EXPRESSIONS)
- log_debug ("exec: supersede option %s.%s",
+ log_debug ("exec: %s option %s.%s",
+ (r -> op == supersede_option_statement
+ ? "supersede" : "send"),
r -> data.option -> option -> universe -> name,
r -> data.option -> option -> name);
goto option_statement;
break;
case supersede_option_statement:
+ case send_option_statement:
case default_option_statement:
case append_option_statement:
case prepend_option_statement:
break;
case supersede_option_statement:
+ case send_option_statement:
s = "supersede";
goto option_statement;
#ifndef lint
static char copyright[] =
-"$Id: options.c,v 1.78 2001/01/11 23:13:50 mellon Exp $ Copyright (c) 1995-2001 The Internet Software Consortium. All rights reserved.\n";
+"$Id: options.c,v 1.79 2001/01/16 23:00:49 mellon Exp $ Copyright (c) 1995-2001 The Internet Software Consortium. All rights reserved.\n";
#endif /* not lint */
#define DHCP_OPTION_DATA
break;
case supersede_option_statement:
+ case send_option_statement:
/* Install the option, replacing any existing version. */
save_option (universe, options, option);
break;