Fix long-standing bug which causes dhclient to clobber interface configs on uninvolved interfaces

This commit is contained in:
sommerfe 1998-07-31 21:27:08 +00:00
parent 55bf1fd9ad
commit c13b52407e
1 changed files with 4 additions and 1 deletions

View File

@ -56,7 +56,7 @@
#ifndef lint
static char copyright[] =
"$Id: dhclient.c,v 1.1.1.5 1998/05/18 06:53:53 mellon Exp $ Copyright (c) 1995, 1996 The Internet Software Consortium. All rights reserved.\n";
"$Id: dhclient.c,v 1.2 1998/07/31 21:27:08 sommerfe Exp $ Copyright (c) 1995, 1996 The Internet Software Consortium. All rights reserved.\n";
#endif /* not lint */
#include "dhcpd.h"
@ -191,11 +191,14 @@ int main (argc, argv, envp)
} else {
/* Call the script with the list of interfaces. */
for (ip = interfaces; ip; ip = ip -> next) {
if ((interfaces_requested == 0) ||
(ip->flags == INTERFACE_REQUESTED)) {
script_init (ip, "PREINIT", (struct string_list *)0);
if (ip -> client -> alias)
script_write_params (ip, "alias_",
ip -> client -> alias);
script_go (ip);
}
}
}