commit e14e4525dd2c0b0716d2ec80533ed214e03b80e5 from: Stefan Sperling via: Thomas Adam date: Tue Dec 03 12:40:45 2024 UTC replace bcopy() with memmove() for standards compliance commit - 758166643bfcc828f609e498252520fc2471ee47 commit + e14e4525dd2c0b0716d2ec80533ed214e03b80e5 blob - ae214d6cc90ef867c3e3237b1d9ef6eaa5ced3f4 blob + 3e242e95ad2418a57af84487d0eb45db5ca50481 --- gotwebd/fcgi.c +++ gotwebd/fcgi.c @@ -101,7 +101,7 @@ fcgi_request(int fd, short events, void *arg) /* drop the parsed record */ if (parsed != 0 && c->buf_len > 0) { - bcopy(c->buf + c->buf_pos, c->buf, c->buf_len); + memmove(c->buf, c->buf + c->buf_pos, c->buf_len); c->buf_pos = 0; } } while (parsed > 0 && c->buf_len > 0);