diff options
Diffstat (limited to 'man_action.c')
-rw-r--r-- | man_action.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/man_action.c b/man_action.c index 6e608310..e0e4139e 100644 --- a/man_action.c +++ b/man_action.c @@ -208,7 +208,7 @@ man_atotime(const char *p) struct tm tm; char *pp; - bzero(&tm, sizeof(struct tm)); + memset(&tm, 0, sizeof(struct tm)); if ((pp = strptime(p, "%b %d %Y", &tm)) && 0 == *pp) return(mktime(&tm)); |