From 5679dd5343e2ca1acfedc144694e1e56373bfd4f Mon Sep 17 00:00:00 2001 From: Markus Uhlin Date: Sat, 6 Jul 2024 19:11:14 +0200 Subject: Replaced bcopy() with memmove() --- FICS/network.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FICS/network.c b/FICS/network.c index 41db477..843bef5 100644 --- a/FICS/network.c +++ b/FICS/network.c @@ -382,7 +382,7 @@ readline2(comstr_t *cs, int who) msnprintf(cs->com, ARRAY_SIZE(cs->com), "%s", start); if (howmany) - bcopy(s + 1, start, howmany); + memmove(start, s + 1, howmany); con[who].state = 0; con[who].numPending = howmany; con[who].processed = 0; -- cgit v1.2.3