From 2666d7dd1b8e3ba008125338c0d92495e26a6457 Mon Sep 17 00:00:00 2001 Message-Id: <2666d7dd1b8e3ba008125338c0d92495e26a6457.1714427699.git.mdw@distorted.org.uk> From: Mark Wooding Date: Tue, 19 Jun 2001 22:08:37 +0000 Subject: [PATCH] Moved buffers to peer.c. Organization: Straylight/Edgeware From: mdw --- tripe.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tripe.c b/tripe.c index 0d44382f..f85248c6 100644 --- a/tripe.c +++ b/tripe.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: tripe.c,v 1.5 2001/02/16 21:43:12 mdw Exp $ + * $Id: tripe.c,v 1.6 2001/06/19 22:08:37 mdw Exp $ * * Main program * @@ -29,6 +29,9 @@ /*----- Revision history --------------------------------------------------* * * $Log: tripe.c,v $ + * Revision 1.6 2001/06/19 22:08:37 mdw + * Moved buffers to peer.c. + * * Revision 1.5 2001/02/16 21:43:12 mdw * Provide a more helpful usage message. * @@ -53,7 +56,6 @@ /*----- Global variables --------------------------------------------------*/ sel_state sel; -octet buf_i[PKBUFSZ], buf_o[PKBUFSZ], buf_t[PKBUFSZ]; /*----- Static variables --------------------------------------------------*/ -- [mdw]