| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
| |
it doesn't allow the dangerous variant of calling it without any
argument.
|
|
|
|
|
|
|
|
| |
return a valid fd.
PR: 49096
Submitted by: demon
MFC after: 3 days
|
|
|
|
|
|
|
|
| |
assignment even if it is not quoted (as advertised by the man page).
This fixes a regression wrt RELENG_4 introduced in rev. 1.11.
Problem noted and patch tested by: CHOI Junho <cjh@kr.FreeBSD.org>
Reviewed by: roberto
|
| |
|
|
|
|
|
| |
PR: 43562
Submitted by: Marc Olzheim <marcolz@ilse.nl>
|
|
|
|
|
|
|
|
| |
for any reason other than ENOENT (think resource limits). Close allow and
deny files before allowed() returns to stop the user's EDITOR being able to
read them.
Obtained from: OpenBSD (partially)
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
line as an environment variable assignment, is broken
and not conformant to its description in the manual page.
I think it is worthwhile to have that fix in 4.6.
PR: bin/38374
Submitted by: Thomas Quinot <thomas@cuivre.fr.eu.org>
MFC after: 2 days
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
I missed this as part of the fix to the PR below.
PR: 31265
Submitted by: Matthew D. Fuller <fullermd@over-yonder.net>
MFC after: 1 week
|
|
|
|
|
|
| |
"modification time" is a lot better.
MFC after: 3 days
|
|
|
|
| |
MFC after: 3 days
|
|
|
|
|
|
|
|
|
| |
the patch Matthew submitted, but I broke the lines in a more FreeBSD
way and made one small wording change.
PR: 31265
Submitted by: Matthew D. Fuller <fullermd@over-yonder.net>
MFC after: 3 weeks
|
|
|
|
| |
Reviewed by: jkh
|
|
|
|
|
| |
PR: docs/33784
Submitted by: Mike Makonnen <mike_makonnen@yahoo.com>
|
|
|
|
|
|
|
|
| |
monthly and weekly, respectively. Also fix the @yearly shortcut so
that it doesn't execute daily during January. OpenBSD and NetBSD also
appear to have this bug.
PR: bin/21152
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
by invalid input in /etc/crontab.
MFC after: 2 days
|
|
|
|
|
| |
These are not perfectly in agreement with each other style-wise, but they
are orders of orders of magnitude more consistent style-wise than before.
|
|
|
|
| |
Submitted by: Mark Peek <mark@whistle.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
e->cmd. free_entry() now does the right thing with
partially-initialized structures.
load_entry(): Don't call env_free() on e->envp throughout the routine
before jumping to eof; the free_entry() call at that label will take
care of it. The previous behavior resulted in e->envp being free'd
twice (well, the second time would usually result in a crash, but
that's besides the point); once in load_entry(), and once in
free_entry() after the former called the latter. Also note that the
check added to free_entry() (above) doesn't help, since e->envp wasn't
reset to NULL after env_free().
Submitted by: Mark Peek <mark@whistle.com>
|
| |
|
|
|
|
| |
Idea from: Theo de Raadt <deraadt@openbsd.org>
|
| |
|
|
|
|
|
|
|
| |
use free_entry() instead of free() to free a struct _entry.
PR: 28108
Submitted by: Mark Peek <mark@whistle.com>
|
|
|
|
|
| |
Otherwise, "crontab -l > file; vi file; crontab file" adds an extra set
of "DO NOT EDIT" markers each and every time which is a bit silly.
|
|
|
|
| |
- MAN[1-9] -> MAN.
|
| |
|
|
|
|
|
|
|
| |
smashing argv[0] doesn't have the intended effect of changing the ps(1)
output these days.
PR: 25850
|
|
|
|
|
|
| |
- replaced Oo/Oc enclosures with Op;
- removed hard sentence breaks;
- removed doubled space.
|
|
|
|
|
| |
for any change of the time zone offset from GMT. To enable use the
option -s.
|
|
|
|
|
| |
child processes or starting children with no fd 0 (stdin) at all etc.
This is currently breaking on hub.freebsd.org.
|
|
|
|
| |
Seperate does not exist in the english language.
|
| |
|
| |
|
|
|
|
|
|
| |
to be used as the -width parameter, it is provided solely for backwards
compatibility with old mdoc(7). To make this work, mdocNG is forced to
provide a dummy ``Ds'' macro.
|
|
|
|
|
|
|
|
|
| |
enabled by the option "-s" (for dSt). This returned the default behavior
to its original form.
The new option name is not "-d" because that would cause associations with
"debug" and cron already has "-x" for debugging, so this would cause
confusion.
|
|
|
|
|
|
|
| |
for the jobs that fall into the disappearing or duplicated time
interval.
PR: bin/24494
|
|
|
|
| |
Bd/Ed; these hardly degrade the quality of the produced output.
|
| |
|
|
|
|
| |
Use _PATH_* where where possible.
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
program to read any file which is a valid crontab file.
The fix is based on that used in NetBSD and OpenBSD - we keep the
file open while the user is editing it. This means that files must
be edited in place. Cron attempts to warn you if your editor does
not do this. The fact that the file must be edited in place is also
noted in the man page.
This patch has been confirmed to work by atleast one person on
-security and has been tested locally.
Obtained from: OpenBSD
|
|
|
|
| |
a crontab you were planning to edit.
|
|
|
|
| |
cases due to vfork()
|