Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | MAN[1-9] -> MAN. | ru | 2001-03-27 | 1 | -4/+4 |
| | |||||
* | Don't use MANDEPEND and MANSRC. | ru | 2001-03-26 | 1 | -5/+2 |
| | |||||
* | mdoc(7) police: split punctuation characters + misc fixes. | ru | 2001-02-01 | 1 | -4/+4 |
| | |||||
* | Prepare for mdoc(7)NG. | ru | 2000-12-19 | 1 | -3/+4 |
| | |||||
* | mdoc(7) police: removed history info from the .Os FreeBSD call. | ru | 2000-12-14 | 1 | -1/+1 |
| | |||||
* | Y2K fix. at(1) would die with 'garbled time' when assign_date() was | sheldonh | 2000-03-27 | 1 | -20/+22 |
| | | | | | | | | | | | | | pased a year > 99. This change fixes the conversion of 2-digit years into tm_year format. This change is differs from the OpenBSD fix because of differences in our assign_date(). PR: 15872 Reported by: "Crist J. Clark" <cjclark@home.com> Submitted by: "Sergey N. Voronkov" <serg@dor.zaural.ru> Obtained from: OpenBSD | ||||
* | Typo | charnier | 2000-03-26 | 1 | -1/+1 |
| | |||||
* | Change the usage of the .Nm macro in the NAME section to be | mpp | 2000-03-24 | 1 | -1/+4 |
| | | | | consistent with the rest of the system. | ||||
* | Correct use of .Nm, .Em, .Ev | charnier | 1999-12-05 | 6 | -127/+120 |
| | | | | | Add rcsid. Use errx instead of fprintf + exit. Various spelling fixes. | ||||
* | $Id$ -> $FreeBSD$ | peter | 1999-08-28 | 6 | -6/+6 |
| | |||||
* | 1. Add support for months and years in relative time spec (now + 1 year) | nsayer | 1999-08-26 | 2 | -52/+35 |
| | | | | | | | 2. Rip out dateadd() and re-do the plus operator handler to use mktime() instead (per wollman). Reviewed by: wollman | ||||
* | Various man page cleanup: | mpp | 1999-08-15 | 1 | -6/+6 |
| | | | | | | | | | - Sort xrefs - Be consistent with section names as outlines in mdoc(7). - Other misc mdoc cleanup. PR: doc/13144 Submitted by: Alexey M. Zelkin <phantom@cris.net> | ||||
* | (1) Don't perror() when at.deny doesn't exist, that's an accepted behavior. | billf | 1999-07-01 | 1 | -3/+6 |
| | | | | | | | | (2) Die when there is a problem opening at.allow other then it not existing. An error other then it not existing might be a trick to somehow circumvent system security. Mostly Reviewed By: msmith | ||||
* | More egcs warning fixes: | imp | 1999-04-25 | 1 | -2/+2 |
| | | | | | | | | | | o main returns int not void o use return 0 at end of main when needed o use braces to avoid potentially ambiguous else o don't default to type int o #ifdef 0 -> #if 0 Reviewed by: obrien and chuckr | ||||
* | Clean up some .Os macro uses: quotes are not needed, multiple arguments | fenner | 1999-02-15 | 1 | -2/+2 |
| | | | | | don't really work if the first one isn't "FreeBSD", and "FreeBSD-Experimental" isn't an OS name. | ||||
* | Eliminate compiler warnings from -Wall | archie | 1998-12-06 | 5 | -6/+9 |
| | |||||
* | atq ignored locale info when printing dates. Is the other call to | mckay | 1998-10-15 | 1 | -1/+5 |
| | | | | | | setlocale() just in the wrong place? PR: 8300 | ||||
* | Remove useless `BINOWN=root' now that it is the default. | obrien | 1998-09-19 | 1 | -2/+1 |
| | |||||
* | Typo fix: garbeld -> garbled | steve | 1998-08-30 | 1 | -2/+2 |
| | | | | | PR: 7784 Submitted by: Kris Kennaway <kkennawa@physics.adelaide.edu.au> | ||||
* | Year is sometimes set to -1 when assign_date() is called. Check for -1 | alex | 1998-08-08 | 1 | -2/+2 |
| | | | | | | before Y2K processing. PR: 7524 | ||||
* | Recognize long month names in addition to short ones. | des | 1998-07-09 | 1 | -1/+13 |
| | | | | | PR: bin/7228 Submitted by: Archie Cobbs <archie@whistle.com> | ||||
* | $@ is deprecated, use ${.TARGET} instead. Ditto for other single character | imp | 1998-06-09 | 1 | -2/+2 |
| | | | | | $n. PR: conf/3273 | ||||
* | Fix a bunch of spelling errors. | steve | 1998-06-04 | 1 | -2/+2 |
| | | | | | PR: 6856 Submitted by: Josh Gilliam <josh@quick.net> | ||||
* | Permit double digit year values to be used in the next millenium. | alex | 1998-05-05 | 1 | -1/+17 |
| | |||||
* | .Sh AUTHOR -> .Sh AUTHORS. Use .An/.Aq. | charnier | 1998-03-23 | 1 | -4/+6 |
| | |||||
* | Revert part of previous commit. I didn't see rcsid string in the middle of | charnier | 1997-06-24 | 1 | -4/+2 |
| | | | | the file. Put includes in alphabetical order. | ||||
* | Use err(3). | charnier | 1997-06-23 | 2 | -8/+10 |
| | | | | Simplification: if(a == 12) a -= 12 -> if(a == 12) a = 0. | ||||
* | compare return value from getopt against -1 rather than EOF, per the final | imp | 1997-03-29 | 1 | -2/+2 |
| | | | | posix standard on the topic. | ||||
* | Back out MAXLOGNAME fix, Bruce points that copyinstr require NUL | ache | 1997-03-03 | 1 | -2/+2 |
| | |||||
* | Fix MAXLOGNAME usage, the code has wrong assumption that it must be | ache | 1997-03-02 | 1 | -3/+3 |
| | | | | NULL terminated | ||||
* | Revert $FreeBSD$ to $Id$ | peter | 1997-02-22 | 6 | -6/+6 |
| | |||||
* | Fix for hard-coded length of login name. | davidn | 1997-02-18 | 1 | -3/+11 |
| | | | | | | Submitted by: Philippe Charnier <charnier@xp11.frmug.org> Closes #PR bin/2755 | ||||
* | Make the long-awaited change from $Id$ to $FreeBSD$ | jkh | 1997-01-14 | 6 | -6/+6 |
| | | | | | | | | This will make a number of things easier in the future, as well as (finally!) avoiding the Id-smashing problem which has plagued developers for so long. Boy, I'm glad we're not using sup anymore. This update would have been insane otherwise. | ||||
* | Fix botches in the handling of "AM" and "PM": | jdp | 1996-07-19 | 1 | -3/+8 |
| | | | | | 12:xx PM is 12:xx, not 24:xx. 12:xx AM is 00:xx, not 12:xx. | ||||
* | Use ${ECHO} instead of `echo' so that `make -s' is fairly quiet. | bde | 1996-02-25 | 1 | -2/+2 |
| | |||||
* | making <page>.1 from <page>.man | wosch | 1996-02-06 | 1 | -1/+2 |
| | |||||
* | recording cvs-1.6 file death | peter | 1995-12-30 | 2 | -258/+0 |
| | |||||
* | Add setlocale LC_TIME | ache | 1995-10-24 | 1 | -1/+7 |
| | |||||
* | Describe the correct default situation for the various permission | joerg | 1995-10-05 | 1 | -3/+3 |
| | | | | | | options. Submitted by: sgk@troutmask.apl.washington.edu (Steven G. Kargl) | ||||
* | Upgrade to 2.9 | ache | 1995-08-21 | 12 | -116/+256 |
| | |||||
* | Make parsetime.c more consistent by using the (already declared) enum | joerg | 1995-06-24 | 2 | -11/+13 |
| | | | | | | | | | | type instead of int all over the place. (Cosmetic, enhances debugging.) Point out that a date specification _must_ follow the time of day spec, in the man page. This clarifies the last point PR # of bin/483: "at doesn't seem to ..." (the remainder has already been fixed with version 1.3 of parsetime.c). | ||||
* | Remove trailing whitespace. | rgrimes | 1995-05-30 | 9 | -43/+43 |
| | |||||
* | Remove setre* hacks, we have working thing now | ache | 1995-04-27 | 2 | -41/+24 |
| | |||||
* | Fight over non-working setruid | ache | 1995-04-15 | 2 | -11/+15 |
| | |||||
* | Upgrade. | ache | 1995-04-12 | 12 | -618/+1207 |
| | |||||
* | Fix off by one error in calculation of `mday' (months start at 1). | bde | 1995-01-31 | 1 | -2/+2 |
| | | | | Jan 31 gave Jan 30, often for next year. | ||||
* | Changed reference from NetBSD to FreeBSD | nate | 1994-01-05 | 1 | -2/+2 |
| | |||||
* | Added at/atrm/atq/batch from Linux as hacked by Chris Demetriou. | nate | 1994-01-05 | 10 | -0/+1704 |