diff options
author | Ted Lemon <source@isc.org> | 1999-09-09 23:53:29 +0000 |
---|---|---|
committer | Ted Lemon <source@isc.org> | 1999-09-09 23:53:29 +0000 |
commit | e92653f1ec74c9b0d0d00e674e4c55508aaac812 (patch) | |
tree | 4b770fb4ca46c95f1003092e2b8e484419d89a6a /omapip/buffer.c | |
parent | 110d0522237f98966865e0df853110a6aba1d9a5 (diff) | |
download | isc-dhcp-e92653f1ec74c9b0d0d00e674e4c55508aaac812.tar.gz |
Bug fixes courtesy of Brian Murrell
Diffstat (limited to 'omapip/buffer.c')
-rw-r--r-- | omapip/buffer.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/omapip/buffer.c b/omapip/buffer.c index f0c6f287..477a2ce1 100644 --- a/omapip/buffer.c +++ b/omapip/buffer.c @@ -171,9 +171,9 @@ isc_result_t omapi_connection_copyin (omapi_object_t *h, /* Copy some bytes from the input buffer, and advance the input buffer pointer beyond the bytes copied out. */ -u_int32_t omapi_connection_copyout (unsigned char *buf, - omapi_object_t *h, - int size) +isc_result_t omapi_connection_copyout (unsigned char *buf, + omapi_object_t *h, + int size) { int bytes_remaining; int bytes_this_copy; @@ -244,7 +244,7 @@ u_int32_t omapi_connection_copyout (unsigned char *buf, return ISC_R_SUCCESS; } -u_int32_t omapi_connection_writer (omapi_object_t *h) +isc_result_t omapi_connection_writer (omapi_object_t *h) { int bytes_this_write; int bytes_written; |