Package: cron
Version: 3.0pl1-130
Severity: minor
Tags: patch

The header shown by crontab -l has a '#' character at the end of line 9:
# and day of week (dow) or use '*' in these fields (for 'any').#

It's due to a '\n' forgotten at the end of previous line in source code
(patch in attachment based on cron_3.0pl1-130.diff)

-- 
Stéphane
--- cron_3.0pl1-130.diff.orig	2018-05-07 15:50:16.539054242 +0200
+++ cron_3.0pl1-130.diff	2018-05-07 15:53:13.851529214 +0200
@@ -2326,7 +2326,7 @@
 +"# \n"
 +"# To define the time you can provide concrete values for\n"
 +"# minute (m), hour (h), day of month (dom), month (mon),\n"
-+"# and day of week (dow) or use '*' in these fields (for 'any')."
++"# and day of week (dow) or use '*' in these fields (for 'any').\n"
 +"# \n"
 +"# Notice that tasks will be started based on the cron's system\n"
 +"# daemon's notion of time and timezones.\n"

Reply via email to