diff options
author | peter <peter@FreeBSD.org> | 2001-06-16 03:16:52 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2001-06-16 03:16:52 +0000 |
commit | c4b28e836b3ad3dc7cf537973ce73a09925830ce (patch) | |
tree | c9133d90289f60c4968823b01a13bfc9347e6dea /usr.sbin/cron | |
parent | 31d03a0c2b3cb69b34acda72383f4a7c1eda90ca (diff) | |
download | FreeBSD-src-c4b28e836b3ad3dc7cf537973ce73a09925830ce.zip FreeBSD-src-c4b28e836b3ad3dc7cf537973ce73a09925830ce.tar.gz |
Where is the pointy hat? Fix cut/paste error. (hey, it compiled! :-)
Diffstat (limited to 'usr.sbin/cron')
-rw-r--r-- | usr.sbin/cron/crontab/crontab.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/cron/crontab/crontab.c b/usr.sbin/cron/crontab/crontab.c index deea864..3ff3e7d 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))) |