From: mdw Date: Wed, 26 May 1999 21:08:01 +0000 (+0000) Subject: Remove redundant structure member. X-Git-Tag: 2.0.4~293 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/mLib/commitdiff_plain/9da403afeef5f4c1ecb9d1d9e678a87a2457d0e0?ds=sidebyside Remove redundant structure member. --- diff --git a/conn.h b/conn.h index e70595c..5298ac0 100644 --- a/conn.h +++ b/conn.h @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: conn.h,v 1.3 1999/05/23 12:12:46 mdw Exp $ + * $Id: conn.h,v 1.4 1999/05/26 21:08:01 mdw Exp $ * * Nonblocking connect handling * @@ -30,6 +30,9 @@ /*----- Revision history --------------------------------------------------* * * $Log: conn.h,v $ + * Revision 1.4 1999/05/26 21:08:01 mdw + * Remove redundant structure member. + * * Revision 1.3 1999/05/23 12:12:46 mdw * Interface change to make the `conn' selector useful for generic stream * sockets rather than just IPv4 ones. @@ -65,7 +68,6 @@ typedef struct conn { sel_file writer; /* Select listener */ void (*func)(int /*fd*/, void */*p*/); /* Handler function */ - int dsz; /* Size of destination address */ void *p; /* Argument for handler function */ } conn;