From 3c521d56fa0b5a2cce19e0b9abdbe676787c107e Mon Sep 17 00:00:00 2001 From: matteo Date: Tue, 18 Nov 2008 00:39:50 +0000 Subject: Be more precise and use sizeof(tn) Pointed out by: glewis@ MFC after: 3 days --- usr.sbin/cron/crontab/crontab.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'usr.sbin/cron') diff --git a/usr.sbin/cron/crontab/crontab.c b/usr.sbin/cron/crontab/crontab.c index 79d26e4..f7af626 100644 --- a/usr.sbin/cron/crontab/crontab.c +++ b/usr.sbin/cron/crontab/crontab.c @@ -502,7 +502,7 @@ replace_cmd() { } (void) snprintf(n, sizeof(n), "tmp.%d", Pid); - (void) snprintf(tn, sizeof(n), CRON_TAB(n)); + (void) snprintf(tn, sizeof(tn), CRON_TAB(n)); if (!(tmp = fopen(tn, "w+"))) { warn("%s", tn); -- cgit v1.1