]> git.ipfire.org Git - thirdparty/dhcp.git/commitdiff
write() returns a signed integer...
authorTed Lemon <source@isc.org>
Thu, 28 Oct 1999 13:09:06 +0000 (13:09 +0000)
committerTed Lemon <source@isc.org>
Thu, 28 Oct 1999 13:09:06 +0000 (13:09 +0000)
omapip/buffer.c

index 37cfc2cb6341fa417f25b6d1d0b9369b526240cd..80e60e56b6db91610a86dbaef4b719a7fc0c40b3 100644 (file)
@@ -257,7 +257,7 @@ isc_result_t omapi_connection_copyout (unsigned char *buf,
 isc_result_t omapi_connection_writer (omapi_object_t *h)
 {
        unsigned bytes_this_write;
-       unsigned bytes_written;
+       int bytes_written;
        unsigned first_byte;
        omapi_buffer_t *buffer;
        unsigned char *bufp;