skalibs

Mirror/fork of https://skarnet.org/software/skalibs/
git clone https://ccx.te2000.cz/git/skalibs
Log | Files | Refs | README | LICENSE

commit 787d104bd528c47140b6e6f25b30682a02db60a5
parent 7427c6ee7e31ae3281af678cdb1c71c9e57867f6
Author: Laurent Bercot <ska-skaware@skarnet.org>
Date:   Wed, 21 Jan 2015 02:26:32 +0000

 Bugfix: definition of UNIXCONNECTION_ZERO

Diffstat:
Msrc/include/skalibs/unixconnection.h | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/include/skalibs/unixconnection.h b/src/include/skalibs/unixconnection.h @@ -13,7 +13,7 @@ struct unixconnection_s char mainbuf[UNIXMESSAGE_BUFSIZE] ; char auxbuf[UNIXMESSAGE_AUXBUFSIZE] ; } ; -#define UNIXCONNECTION_ZERO { .out = UNIXMESSAGE_SENDER_ZERO, .in = UNIXMESSAGE_RECEIVER_ZERO } ; +#define UNIXCONNECTION_ZERO { .out = UNIXMESSAGE_SENDER_ZERO, .in = UNIXMESSAGE_RECEIVER_ZERO } extern unixconnection_t const unixconnection_zero ; extern void unixconnection_init (unixconnection_t *, int, int) ;