summaryrefslogtreecommitdiffstats
path: root/usr.sbin/ctm
Commit message (Collapse)AuthorAgeFilesLines
* Usage style sweep: spell "usage" with a small 'u'.des2002-04-221-1/+1
| | | | | Also change one case of blatant __progname abuse (several more remain) This commit does not touch anything in src/{contrib,crypto,gnu}/.
* Use `The .Nm utility'charnier2002-04-202-12/+21
|
* Modernize my email address.phk2002-03-254-4/+4
|
* Modernize my email addressphk2002-03-258-8/+8
|
* The mode of files created by ctm_rmail was always 0600, even if theiedowse2002-01-221-0/+6
| | | | | | | | | umask was less restrictive. This was caused by the use of mkstemp() which internally passes a mode of 0600 to open(). Fix this by explicitly chmod'ing the files to (0666 & ~umask). PR: bin/16119 Submitted by: Sascha Blank <blank@uni-trier.de>
* Spell "FreeBSD" with "F" and "BSD" in uppercase.ru2001-08-133-6/+6
|
* mdoc(7) police:ru2001-08-071-12/+10
| | | | | | | Avoid using parenthesis enclosure macros (.Pq and .Po/.Pc) with plain text. Not only this slows down the mdoc(7) processing significantly, but it also has an undesired (in this case) effect of disabling hyphenation within the entire enclosed block.
* Use STD{ERR,IN,OUT}_FILENO instead of their numeric values. Thesheldonh2001-07-261-5/+7
| | | | | | | definitions are more readable, and it's possible that they're more portable to pathalogical platforms. Submitted by: David Hill <david@phobia.ms>
* Perform a major cleanup of the usr.sbin Makefiles.obrien2001-07-204-17/+21
| | | | | 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.
* Remove GCC'isms in CFLAGS.obrien2001-07-205-5/+7
|
* Remove whitespace at EOL.dd2001-07-152-19/+19
|
* mdoc(7) police: remove extraneous .Pp before and/or after .Sh.dd2001-07-092-3/+0
|
* Fix the type of the NULL arg to execl()brian2001-07-091-1/+1
| | | | Idea from: Theo de Raadt <deraadt@openbsd.org>
* * fix ctm(8) to use mkstemp() instead of tempnam() for tempfilekris2001-05-065-7/+64
| | | | | | | | | | | | | creation. * Tag the internal err() function with __printflike to allow checking for non-constant format string arguments (none exist) * Use fmtcheck() to sanitize the tar command obtained via -t to make sure it doesn't contain extraneous format operators. Reviewed by: mikeh MFC after: 1 week
* - Backout botched attempt to introduce MANSECT feature.ru2001-03-262-3/+1
| | | | - MAN[1-9] -> MAN.
* Set the default manual section for usr.sbin/ to 8.ru2001-03-201-0/+3
|
* There is an arbitrary file size limit in ctm of 20MB. By my reckoning,mckay2001-02-191-1/+1
| | | | | | ports/INDEX,v is currently 19.97MB and will blow this limit on the next update. Let's try doubling the limit again, to give us time to get around to removing the limit altogether.
* mdoc(7) police: split punctuation characters + misc fixes.ru2001-02-011-2/+2
|
* Prepare for mdoc(7)NG.ru2000-12-273-92/+27
|
* mdoc(7) police: use canonical form of .Dd macro.ru2000-12-111-1/+1
|
* Add `_PATH_DEVZERO'.obrien2000-12-091-1/+4
| | | | Use _PATH_* where where possible.
* mdoc(7) police: use the new features of the Nm macro.ru2000-11-201-3/+3
|
* remove trailing periods from SEE ALSO.ben2000-11-151-1/+1
|
* Use Fx macro wherever possible.ru2000-11-141-2/+6
|
* Avoid use of direct troff requests in mdoc(7) manual pages.ru2000-11-101-2/+1
|
* Complete migration of aliases file to /etc/mail/aliases.gshapiro2000-08-131-1/+1
| | | | | The maintainers of share/examples/diskless/README.TEMPLATING and mergemaster have been contacted so those may be updated as well.
* Change use of perror() to warn()kris2000-08-031-1/+1
| | | | Submitted by: bde
* Doubling the size of MAXSIZE because of large delta indigestion.chuckr2000-06-211-1/+1
| | | | Submitted by: Stefan Esser.
* Mark "name" as being an argument, so it is formatted correctly.nik2000-03-071-1/+1
| | | | | PR: docs/16834 Submitted by: Greg Lewis <glewis@trc.adelaide.edu.au>
* Correcting SECURITY warning.chuckr2000-01-292-22/+32
| | | | | Submitted by: Kris Kennaway Reviewed by: Warner Losh
* Fix insecure tempfile handling.kris2000-01-161-5/+18
| | | | Reviewed by: audit@freebsd.org
* |Since I had suffered from partially applied CTM deltas, some time ago,phk2000-01-151-4/+10
| | | | | | | | | |I made ctm ignore deltas for files that match the "after edit" MD5. |(In one case, I had the compiler fill all temporary space while CTM |was editing files.) Submitted by: se Reviewed by: phk
* Document the (in)security features of CTM, especially ctm_rmail.kris2000-01-112-24/+51
|
* Close buffer overflows. This is partially based on an old version ofkris2000-01-091-22/+25
| | | | | | the fix from OpenBSD. Reviewed by: markm
* Correct the email address that folk are to bug if they needmarkm1999-11-291-24/+12
| | | | | | help; also point them in the direction of the source, not PHK (or any other human) if they need to make CTM deltas of their own.
* Remove comments left since mdoc.template time or just useless commentsphantom1999-10-301-8/+2
|
* $Id$ -> $FreeBSD$peter1999-08-2819-19/+19
|
* Some man page cleanup. Make the NAME and SYNOPSIS sections agree sompp1999-06-241-2/+4
| | | | | | that whatis(1) will produce the expected results. Pointed-out-by: Jesus Monroy <jesus.monroy@usa.net> in freebsd-doc
* Use 4 digit year in log file, rather than 2.danny1999-01-191-1/+1
|
* Paranoia: use mkstemp instead of mktemp.nectar1998-07-271-6/+8
| | | | | PR: bin/3211 Reported by: Mark Pritchard <mpp@FreeBSD.ORG>
* Spellint fixes.phk1998-06-101-3/+3
| | | | | | PR: 6903 (not the contrib bits). Reviewed by: phk Submitted by: Josh Gillam <josh@quick.net>
* Spelling/typo fix: (proccessed).rnordier1998-04-201-2/+2
|
* Spelling/typo fixes: (proccessed, og).rnordier1998-04-201-3/+3
|
* (evil) hackers -> crackerscracauer1998-04-081-2/+2
|
* .Sh AUTHOR -> .Sh AUTHORS. Use .An/.Aq.charnier1998-03-231-2/+2
|
* Delete ctm_scan program. There is no manpage for ctm_scanwosch1997-10-123-208/+2
| | | | | | and nobody use it. Reviewed by: phk & Richard Wackerbarth
* Use err(3). Use An/Aq for author name.charnier1997-09-1711-92/+97
|
* fix misspellingjmg1997-08-301-2/+2
| | | | | | Submitted-by: Josh Gilliam Closes PR:4424
* compare return value from getopt against -1 rather than EOF, per the finalimp1997-03-311-1/+1
| | | | posix standard on the topic.
* Revert $FreeBSD$ to $Id$peter1997-02-2221-21/+21
|
OpenPOWER on IntegriCloud