New Patches for SCO UnixWare 7.1.X and OpenUNIX 8.0.0 to buffer.c and buffer.h
Boyd Lynn Gerber <[email protected]>
| Newsgroups | gmane.comp.version-control.cvs.bugs |
|---|---|
| Message-ID | <[email protected]> |
On Fri, 9 May 2003, Boyd Lynn Gerber wrote: > These patches fix the problem building on these platforms. It then passes > all tests. Sorry the previous patches broke things on OpenServer. These patches work on all SCO Platforms. Sorry, -- Boyd Gerber <[email protected]> ZENEZ 1042 East Fort Union #135, Midvale Utah 84047 _______________________________________________ Bug-cvs mailing list [email protected] http://mail.gnu.org/mailman/listinfo/bug-cvs
buffer.c.patch
(text/plain, 644 B)
32c32 < buf_initialize (input, output, flush, block, shutdown, memory, closure) --- > buf_initialize (input, output, flush, block, my_shutdown, memory, closure) 37c37 < int (*shutdown) PROTO((struct buffer *)); --- > int (*my_shutdown) PROTO((struct buffer *)); 51c51 < buf->shutdown = shutdown; --- > buf->my_shutdown = shutdown; 1206,1207c1206,1207 < if (buf->shutdown) < return (*buf->shutdown) (buf); --- > if (buf->my_shutdown) > return (*buf->my_shutdown) (buf); 1257c1257 < assert(buf->shutdown == stdio_buffer_shutdown); --- > assert(buf->my_shutdown == stdio_buffer_shutdown);
buffer.h.patch
(text/plain, 113 B)
64c64 < int (*shutdown) PROTO((struct buffer *)); --- > int (*my_shutdown) PROTO((struct buffer *));