From: Wilfried Goesgens Date: Sun, 21 Oct 2012 20:57:22 +0000 (+0200) Subject: tools: replace st00pid uses of strcpy X-Git-Tag: v8.20~211 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=b003e38343e1cc97856cdf763215f6f5eb68ba63 tools: replace st00pid uses of strcpy --- 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;