Update of /cvsroot/dhcp-agent/dhcp-agent/src
In directory sc8-pr-cvs1:/tmp/cvs-serv20100
Modified Files:
dhcp-client.c
Log Message:
fixed erroneous messages
Index: dhcp-client.c
===================================================================
RCS file: /cvsroot/dhcp-agent/dhcp-agent/src/dhcp-client.c,v
retrieving revision 1.19
retrieving revision 1.20
diff -C2 -d -r1.19 -r1.20
*** dhcp-client.c 29 Dec 2002 05:17:49 -0000 1.19
--- dhcp-client.c 31 Dec 2002 10:30:59 -0000 1.20
***************
*** 296,300 ****
if(file_get_pid(interface, &pid)) {
ERROR_MESSAGE
! ("could not get PID for client running on interface %s. Maybe it's not running?");
return;
}
--- 296,300 ----
if(file_get_pid(interface, &pid)) {
ERROR_MESSAGE
! ("could not get PID for client running on interface %s. Maybe it's not running?", interface);
return;
}
***************
*** 464,468 ****
if(file_create_pid(interface)) {
! ERROR_MESSAGE("could not create PID file for interface: %s");
client_states[STATE_DO_SHUTDOWN] (NULL);
}
--- 464,468 ----
if(file_create_pid(interface)) {
! ERROR_MESSAGE("could not create PID file for interface: %s", interface);
client_states[STATE_DO_SHUTDOWN] (NULL);
}
|