Update of /cvsroot/dhcp-agent/dhcp-agent/src
In directory sc8-pr-cvs1:/tmp/cvs-serv1521
Modified Files:
dhcp-client-conf.c
Log Message:
fixed bug in boolean handler: was referencing wrong array for variable name.
Index: dhcp-client-conf.c
===================================================================
RCS file: /cvsroot/dhcp-agent/dhcp-agent/src/dhcp-client-conf.c,v
retrieving revision 1.29
retrieving revision 1.30
diff -C2 -d -r1.29 -r1.30
*** dhcp-client-conf.c 27 Jun 2003 03:16:27 -0000 1.29
--- dhcp-client-conf.c 27 Jul 2003 03:07:39 -0000 1.30
***************
*** 1158,1162 ****
if(client_conf_set_variable_boolean(params, *var_symbol, *var_value)) {
! ERROR_MESSAGE("configuration: error unable to set boolean variable %s", var_strings[*var_symbol], var_value);
return 1;
}
--- 1158,1162 ----
if(client_conf_set_variable_boolean(params, *var_symbol, *var_value)) {
! ERROR_MESSAGE("configuration: error unable to set boolean variable %s", var_boolean_strings[*var_symbol], var_value);
return 1;
}
|