aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/cron
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>2001-06-16 03:16:52 +0000
committerPeter Wemm <peter@FreeBSD.org>2001-06-16 03:16:52 +0000
commitd952a14dbb6a0d3e3611ac5ad91f09f228b120bc (patch)
treec9133d90289f60c4968823b01a13bfc9347e6dea /usr.sbin/cron
parentcb38c474621b3bc6bf7ee86fe53d821dfdbab234 (diff)
downloadsrc-d952a14dbb6a0d3e3611ac5ad91f09f228b120bc.tar.gz
src-d952a14dbb6a0d3e3611ac5ad91f09f228b120bc.zip
Where is the pointy hat? Fix cut/paste error. (hey, it compiled! :-)
Notes
Notes: svn path=/head/; revision=78321
Diffstat (limited to 'usr.sbin/cron')
-rw-r--r--usr.sbin/cron/crontab/crontab.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/cron/crontab/crontab.c b/usr.sbin/cron/crontab/crontab.c
index deea864692d5..3ff3e7dbfa40 100644
--- a/usr.sbin/cron/crontab/crontab.c
+++ b/usr.sbin/cron/crontab/crontab.c
@@ -248,7 +248,7 @@ list_cmd() {
if (EOF == ch)
break;
if ('#' != ch) {
- putc(ch, NewCrontab);
+ putchar(ch);
break;
}
while (EOF != (ch = get_char(f)))