From b003e38343e1cc97856cdf763215f6f5eb68ba63 Mon Sep 17 00:00:00 2001 From: Wilfried Goesgens Date: Sun, 21 Oct 2012 22:57:22 +0200 Subject: [PATCH] tools: replace st00pid uses of strcpy --- libcitadel/lib/tools.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libcitadel/lib/tools.c b/libcitadel/lib/tools.c index f520ee2d9..c0d3f9f1e 100644 --- a/libcitadel/lib/tools.c +++ b/libcitadel/lib/tools.c @@ -573,7 +573,7 @@ void fmt_date(char *buf, size_t n, time_t thetime, int seconds) { "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" }; - strcpy(buf, ""); + *buf = '\0'; localtime_r(&thetime, &tm); hour = tm.tm_hour; @@ -835,7 +835,7 @@ void urlesc(char *outbuf, size_t oblen, char *strbuf) int a, b, c, len, eclen, olen; char *ec = " +#&;`'|*?-~<>^()[]{}/$\"\\"; - strcpy(outbuf, ""); + *outbuf = '\0'; len = strlen(strbuf); eclen = strlen(ec); olen = 0; -- 2.30.2