From 787ece6c0185b4f6dba0956fa56983c1cb69ab70 Mon Sep 17 00:00:00 2001 From: Robert James Kaes Date: Thu, 22 Nov 2001 00:31:10 +0000 Subject: Reformated text. --- src/conns.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'src/conns.c') diff --git a/src/conns.c b/src/conns.c index 8c0767a..d47701c 100644 --- a/src/conns.c +++ b/src/conns.c @@ -1,4 +1,4 @@ -/* $Id: conns.c,v 1.4 2001-11-21 01:00:08 rjkaes Exp $ +/* $Id: conns.c,v 1.5 2001-11-22 00:31:10 rjkaes Exp $ * * Create and free the connection structure. One day there could be * other connnection related tasks put here, but for now the header @@ -25,7 +25,8 @@ #include "stats.h" #include "utils.h" -void initialize_conn(struct conn_s *connptr) +void +initialize_conn(struct conn_s *connptr) { connptr->client_fd = connptr->server_fd = -1; connptr->cbuffer = new_buffer(); @@ -42,7 +43,8 @@ void initialize_conn(struct conn_s *connptr) update_stats(STAT_OPEN); } -void destroy_conn(struct conn_s *connptr) +void +destroy_conn(struct conn_s *connptr) { if (connptr->client_fd != -1) close(connptr->client_fd); -- cgit v1.2.3