# HG changeset patch # User Thomas Klausner # Date 1582025495 -3600 # Node ID 3ac2877628a5e7a0125dc8378cf49a5342a6649e # Parent 689758fbb05dfc9c849ff6db6f7a1cc93c6bc7b6 Increase size of cc_id to silence gcc 8.3 warnings about snprintfs that don't fit. diff -r 689758fbb05d -r 3ac2877628a5 libfdcore/cnxctx.h --- a/libfdcore/cnxctx.h Tue Feb 18 11:39:01 2020 +0100 +++ b/libfdcore/cnxctx.h Tue Feb 18 12:31:35 2020 +0100 @@ -43,7 +43,7 @@ /* The connection context structure */ struct cnxctx { - char cc_id[60]; /* The name of this connection. the first 5 chars are reserved for flags display (cc_state). */ + char cc_id[100]; /* The name of this connection. the first 5 chars are reserved for flags display (cc_state). */ char cc_remid[60]; /* Id of remote peer */ int cc_socket; /* The socket object of the connection -- <=0 if no socket is created */