summaryrefslogtreecommitdiffstats
path: root/usr.bin
Commit message (Collapse)AuthorAgeFilesLines
...
* Add a new -F flag which is a superset of -f. It will cause tail topeter1998-04-064-4/+42
| | | | | | stat() the file being followed and do a close/reopen if the file has been renamed and/or rotated. This is damn useful for leaving running on files in /var/log when newsyslog(8) rotates them.
* Prevent rdist from dumping core: do not free() pointer before using it.charnier1998-04-068-19/+34
| | | | | Add rcsid. Document -D flag (debug mode). Remove unused includes. PR:bin/3158 (part 1)
* PR: bin/6193danny1998-04-011-2/+2
| | | | | Submitted by: Max Euston <meuston@jmrodgers.com> Make times between 0000-0059 and 1200-1259 show as 12:xx, not 0:xx
* Rats. I was too fast here. Re-enable SUID mode for the non-Kerberosmarkm1998-03-261-3/+3
| | | | case.
* Quite a while back KTH (who are the good folks who wrote our KerberosIV)markm1998-03-262-18/+20
| | | | | | | | announced a K4 weakness with their rsh/rlogins. We were not put in any danger by this, as we were not using KTH rlogin/rsh, but the patches in themselves, had some good points. This lot means we can run our rlogin without it being SUID root. Win win win. There are other KTH cleanups as well.
* Remove unneeded crud.markm1998-03-261-207/+0
|
* Remove special global tags support; we don't do it that way anymore.eivind1998-03-261-2/+0
|
* Ouch, that nm is aout which is not alpha-friendly. Make it i386jb1998-03-241-3/+3
| | | | specific.
* Ifdefed conditionally-unused variables.bde1998-03-231-1/+3
|
* .Sh AUTHOR -> .Sh AUTHORS. Use .An/.Aq.charnier1998-03-2328-83/+95
|
* Add rcsid. Sort #includes.charnier1998-03-231-3/+7
|
* Add const to rcsid.charnier1998-03-231-2/+2
|
* .Nm nice -> .Nm.charnier1998-03-231-3/+3
|
* Add rcsid. Correct -Wall warning.charnier1998-03-231-1/+5
|
* Reword using who.1 as a good example of where to start.steve1998-03-221-2/+2
| | | | Submitted by: bde
* Remove a bunch of unsupported machines, and the 'other' case wherejb1998-03-221-30/+7
| | | | | | some subdirs were only processed for install and clean (which caused builds to fail on alpha). Install and clean should always follow SUBDIRS.
* merge ppp-2.3.3 changes onto mainlinepeter1998-03-212-726/+732
|
* Honour -static in LDFLAGS.bde1998-03-211-9/+8
| | | | | Install using ${INSTALL}, not `install'. Install generated files using ${COPY}, not -c. Install using a single command when this is easy.
* Don't use beforedepend to break things. The usual fix of puttingbde1998-03-201-11/+9
| | | | | | | | | | | | | generated sources in SRCS breaks because compile_et uses an evil include of one .c file in another. Use a worse fix. Perhaps DPSRCS is useful after all. Don't put *.y in SRCS. Put the generated file in SRCS instead. This fixes incomplete dependencies (mkdep can't work on *.y). Don't override the default .l.c rule. Just use LFLAGS. Fixed some style bugs.
* Updated MISSING list.bde1998-03-201-2/+2
|
* Some things only work on i386.jb1998-03-131-16/+23
|
* This commit was generated by cvs2svn to compensate for changes in r34448,peter1998-03-102-0/+191
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Import intial version of an a.out/elf tool wrapper/selector. It ispeter1998-03-102-0/+191
| | | | not active yet, just a work-in-progress.
* cksum does a 32-bit checksum, so it needs to use u_int32_t variables,jb1998-03-107-29/+31
| | | | | not u_long. With this change, cksum stops core dumping on alpha (not a good sign!) and actually computes the same values as it does on i386.
* Localize itache1998-03-081-3/+6
|
* Change default temporary directory (TMPDIR) from /tmp to /var/tmp.wosch1998-03-084-11/+11
| | | | | Mosts users seems to have a larger /var/tmp partition than /tmp - IMHO silly but who cares?
* Improve shell variable substitution.wosch1998-03-083-30/+24
|
* Rewrite script as a select loop rather than as a twin reader/write process.peter1998-03-082-75/+96
| | | | | This allows simple logging of keys sent to a session (turned on with -k). Also allow specifying the script file flush interval.
* Replaced by ncalhelbig1998-03-084-570/+0
|
* Support a couple of new "-s" stats.dyson1998-03-071-1/+3
|
* Prevent passwd locking database forever waiting for user inputache1998-03-071-3/+4
| | | | Submitted by: Antti Kaipila <anttik@iki.fi>
* Fix a #ifndef that became a #ifdef and changed the defaultjb1998-03-071-2/+2
| | | | | | behaviour of rpcgen. Noticed by: bde
* Fixed `make -jN' for large N. Just put the generated file y.tab.h inbde1998-03-061-1/+3
| | | | | SRCS and add a dummy rule to create it. This and cleaning of yacc output files should all be handled by bsd.prog.mk.
* Fixed `make -jN' for large N, as usual.bde1998-03-061-2/+3
|
* Fixed `make -jN' for large N. Just put all generated headers in SRCS.bde1998-03-061-1/+1
|
* Fix a few minor typos and style nits.steve1998-03-011-7/+7
| | | | | PR: 5883 Submitted by: hnokubi@yyy.or.jp
* Use .Nm rdist for second .Nm occurrence in synopsis.alex1998-03-011-1/+1
|
* Use `.Nm id' instead of `.Nm' for the synopsis lines.alex1998-02-281-5/+5
| | | | PR: 5876
* Don't assume sigset_t and int are equivalent.jraynard1998-02-282-4/+6
|
* Don't claim XMS isn't implemented (it is).msmith1998-02-262-1/+17
| | | | | Attempt to explain the "X11 support not compiled in" diagnostic. Submitted by: philip@rmit.edu.au (Philip Musumeci)
* Added a prototype for a qsort comparision function and fixed the usualbde1998-02-251-4/+5
| | | | type mismatch uncovered by this.
* Fixed the usual type mismatch for a qsort comparison function.bde1998-02-251-4/+5
|
* Fixed the usual type mismatch for a signal handling function.bde1998-02-252-3/+4
|
* Add a -p option which is the same as the -m option but providedsteve1998-02-242-2/+7
| | | | | | for SVR4 compatibility. PR: 5826
* Add Back-Tab functionality. (Ie. shift-tab)msmith1998-02-221-2/+3
| | | | Submitted by: Randall Hopper <rhh@ct.picker.com>
* Change a (defaulted) int arg to a long so that a cast from a pointerjb1998-02-202-3/+5
| | | | | doesn't throw anything away. I don't want to re-code the app, just port it!
* Add #include <string.h> to get prototypes. Note that this programjb1998-02-203-3/+6
| | | | also has a local "string.h" which is included too.
* Add #include <string.h> to get prototypes.jb1998-02-202-0/+2
|
* Add #include <stdlib.h> to get prototypes.jb1998-02-203-0/+3
|
* Don't create an unused obj directory.bde1998-02-201-1/+3
|
OpenPOWER on IntegriCloud