From 44bc9605d6d3af9162dc917c43b7a466a24a230b Mon Sep 17 00:00:00 2001 From: Lukas Fleischer Date: Mon, 17 Oct 2011 17:43:16 +0200 Subject: Avoid use of printf()/fprintf() Use one of the following functions where appropriate: * puts() (whenever we print hard coded strings to stdout) * fputs() (whenever we print hard coded strings to a stream) * putchar() (whenever we print a single character to stdout) * fputc() (whenever we print a single character to a stream) * strncpy() (whenever we copy hard coded strings to a buffer) This removes the overhead introduced by the format string parser and reduces the number of false positive C-format strings spotted by xgettext(1)'s heuristics. Signed-off-by: Lukas Fleischer --- src/utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/utils.c') diff --git a/src/utils.c b/src/utils.c index 2501d9b..f007ee1 100644 --- a/src/utils.c +++ b/src/utils.c @@ -293,7 +293,7 @@ date_sec2date_str (long sec, char *datefmt) char *datestr = (char *) mem_calloc (BUFSIZ, sizeof (char)); if (sec == 0) - (void)snprintf (datestr, BUFSIZ, "0"); + (void)strncpy (datestr, "0", BUFSIZ); else { lt = localtime ((time_t *)&sec); -- cgit v1.2.3-54-g00ecf