summaryrefslogtreecommitdiffstats
path: root/mdoc_strings.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-10-27 08:26:11 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-10-27 08:26:11 +0000
commit7e736e832ab3af50731a6052e3a35a687fa8b3a4 (patch)
tree5cf3201ebb4ef4ba706270a36400689b8f57d9ce /mdoc_strings.c
parent1a72827ba0c676daa9f8e7727da2668825b503a2 (diff)
downloadmandoc-7e736e832ab3af50731a6052e3a35a687fa8b3a4.tar.gz
bzero() -> memset() (noted by Joerg Sonnenberger).
Diffstat (limited to 'mdoc_strings.c')
-rw-r--r--mdoc_strings.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mdoc_strings.c b/mdoc_strings.c
index 5ac30111..1962a6ca 100644
--- a/mdoc_strings.c
+++ b/mdoc_strings.c
@@ -131,7 +131,7 @@ mdoc_atotime(const char *p)
struct tm tm;
char *pp;
- bzero(&tm, sizeof(struct tm));
+ memset(&tm, 0, sizeof(struct tm));
if (0 == strcmp(p, "$" "Mdocdate$"))
return(time(NULL));