summaryrefslogtreecommitdiffstats
path: root/usr.bin/w/pr_time.c
diff options
context:
space:
mode:
authoryokota <yokota@FreeBSD.org>1997-03-07 10:54:19 +0000
committeryokota <yokota@FreeBSD.org>1997-03-07 10:54:19 +0000
commit479436ac99420a9f21448ceff38e56f9891b74de (patch)
treebeb69aee2112caa7c3cb9c304c017b413cc94e78 /usr.bin/w/pr_time.c
parent8c8965349ae8918a5418c8ab2b62a321b6359481 (diff)
downloadFreeBSD-src-479436ac99420a9f21448ceff38e56f9891b74de.zip
FreeBSD-src-479436ac99420a9f21448ceff38e56f9891b74de.tar.gz
Made sure the string formated by strftime() is properly
null-terminated. Should go to RELENG_2_1 and RELENG_2_2. Reviewed by guido@freebsd.org.
Diffstat (limited to 'usr.bin/w/pr_time.c')
-rw-r--r--usr.bin/w/pr_time.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/w/pr_time.c b/usr.bin/w/pr_time.c
index 6faf6db..c48f6a7 100644
--- a/usr.bin/w/pr_time.c
+++ b/usr.bin/w/pr_time.c
@@ -76,7 +76,8 @@ pr_attime(started, now)
(void)strcpy(fmt, __CONCAT("%l:%", "M%p"));
}
- (void)strftime(buf, sizeof(buf), fmt, tp);
+ (void)strftime(buf, sizeof(buf) - 1, fmt, tp);
+ buf[sizeof(buf) - 1] = '\0';
(void)printf("%s", buf);
}
OpenPOWER on IntegriCloud