summaryrefslogtreecommitdiff
path: root/dhcpctl/dhcpctl.c
diff options
context:
space:
mode:
authorTed Lemon <source@isc.org>1999-10-04 23:49:01 +0000
committerTed Lemon <source@isc.org>1999-10-04 23:49:01 +0000
commit7528da64ce174855f0bebec0f7c4081d9637ee28 (patch)
tree5ce714bf591cc1dd7ca6f4f891d754a7e87bae83 /dhcpctl/dhcpctl.c
parentfd81bd9ea67919e5d03c48c2cfb0065e4b2d67c6 (diff)
downloadisc-dhcp-7528da64ce174855f0bebec0f7c4081d9637ee28.tar.gz
Constifications from Brian Murrell.
Diffstat (limited to 'dhcpctl/dhcpctl.c')
-rw-r--r--dhcpctl/dhcpctl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/dhcpctl/dhcpctl.c b/dhcpctl/dhcpctl.c
index 10372405..a9ec04ba 100644
--- a/dhcpctl/dhcpctl.c
+++ b/dhcpctl/dhcpctl.c
@@ -256,8 +256,8 @@ dhcpctl_status dhcpctl_set_value (dhcpctl_handle h, dhcpctl_data_string value,
trouble of creating a data_string for a NUL-terminated string.
Does not update the server - just sets the value on the handle. */
-dhcpctl_status dhcpctl_set_string_value (dhcpctl_handle h, char *value,
- char *value_name)
+dhcpctl_status dhcpctl_set_string_value (dhcpctl_handle h, const char *value,
+ const char *value_name)
{
isc_result_t status;
omapi_typed_data_t *tv = (omapi_typed_data_t *)0;