From: Denys Vlasenko Date: Tue, 26 Mar 2019 10:41:35 +0000 (+0100) Subject: ts: replace overlapping strcpy with shorter code X-Git-Tag: 1_31_0~159 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=3395e2a8efc92c2198620cce6f90d39bffcbb393;p=oweals%2Fbusybox.git ts: replace overlapping strcpy with shorter code function old new delta ts_main 401 398 -3 Signed-off-by: Denys Vlasenko --- diff --git a/miscutils/ts.c b/miscutils/ts.c index c389ab89a..a2823721c 100644 --- a/miscutils/ts.c +++ b/miscutils/ts.c @@ -42,7 +42,8 @@ int ts_main(int argc UNUSED_PARAM, char **argv) frac = is_suffixed_with(fmt_dt2str, "%.s"); if (frac) { frac++; - strcpy(frac, frac + 1); + frac[0] = frac[1]; + frac[1] = '\0'; } #define date_buf bb_common_bufsiz1