summaryrefslogtreecommitdiff
path: root/omapip/buffer.c
diff options
context:
space:
mode:
authorShane Kerr <shane@isc.org>2007-07-13 06:43:43 +0000
committerShane Kerr <shane@isc.org>2007-07-13 06:43:43 +0000
commit28868515f6cb8ec3a78773391945ac89d555d65d (patch)
tree108b4801b3d3d019278281eb276288271480afe3 /omapip/buffer.c
parent763cba6b918975315a644646137fec48e4953058 (diff)
downloadisc-dhcp-28868515f6cb8ec3a78773391945ac89d555d65d.tar.gz
Code cleanup to remove warnings from "gcc -Wall".
See RT ticket #16988 for more.
Diffstat (limited to 'omapip/buffer.c')
-rw-r--r--omapip/buffer.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/omapip/buffer.c b/omapip/buffer.c
index de3964b5..4e851280 100644
--- a/omapip/buffer.c
+++ b/omapip/buffer.c
@@ -441,7 +441,6 @@ isc_result_t omapi_connection_writer (omapi_object_t *h)
int bytes_written;
unsigned first_byte;
omapi_buffer_t *buffer;
- unsigned char *bufp;
omapi_connection_object_t *c;
isc_result_t status;
@@ -578,7 +577,6 @@ isc_result_t omapi_connection_put_uint32 (omapi_object_t *c,
u_int32_t value)
{
u_int32_t inbuf;
- isc_result_t status;
inbuf = htonl (value);
@@ -605,7 +603,6 @@ isc_result_t omapi_connection_put_uint16 (omapi_object_t *c,
u_int32_t value)
{
u_int16_t inbuf;
- isc_result_t status;
inbuf = htons (value);