From: Ted Lemon Date: Thu, 28 Oct 1999 13:09:06 +0000 (+0000) Subject: write() returns a signed integer... X-Git-Tag: BCTEL_SPECIAL_19991124~45 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f0b8a59f377448810f3b4c4d8dee1aa1060a41bb;p=thirdparty%2Fdhcp.git write() returns a signed integer... --- diff --git a/omapip/buffer.c b/omapip/buffer.c index 37cfc2cb6..80e60e56b 100644 --- a/omapip/buffer.c +++ b/omapip/buffer.c @@ -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;