summaryrefslogtreecommitdiffstats
path: root/usr.bin
Commit message (Collapse)AuthorAgeFilesLines
* Apply the following mechanical transformations in preparation fordes2002-02-066-56/+56
| | | | | | | | | | | | | | | | | ansification and constification: s{\s+__P\((\(.*?\))\)}{$1}g; s{\(\s+}{\(}g; s{\s+\)}{\)}g; s{\s+,}{,}g; s{(\s+)(for|if|switch|while)\(}{$1$2 \(}g; s{return ([^\(].*?);}{return ($1);}g; s{([\w\)])([!=+/\*-]?=)([\w\(+-])}{$1 $2 $3}g; s{\s+$}{\n};g Also add $FreeBSD$ where needed. MFC after: 1 week
* The clnt_create(KEYSERVSOCK, CRYPT_PROG, CRYPT_VERS, "unix") hacksalfred2002-02-053-24/+56
| | | | | | | | | | | | | were removed and replaced them with clnt_tp_create, now the af_local support is fixed. I also removed the hack how rpcinfo contacted rpcbind, now we can relay on clnt_tp_create create the client-handle for us. Only rpcbind itself needs a hardcoded socket-path. Submitted by: mbr Also add $FreeBSD
* Allow ldd(1) be used on shared libraries in addition to executables.sobomax2002-02-042-3/+14
|
* GC meaningless assignment.sobomax2002-02-041-1/+1
| | | | MFC after: 3 days
* Silence some WFORMAT=1 warningskris2002-02-041-3/+3
|
* Mark a function as __printflike()kris2002-02-041-1/+1
| | | | MFC after: 1 week
* Use new ID scheme.mike2002-02-031-25/+20
| | | | | | | | Fix a bug that caused .br domains to be queried twice, by only recursively following ARIN referrals when querying ARIN. PR: 34291 MFC after: 7 days
* Complete bzip2-1.0.2 import.sobomax2002-02-012-3/+25
| | | | MFC in: 14 days
* Add -a option (SUSv3) to split(1).mike2002-02-012-11/+49
| | | | | Submitted by: Tim J. Robbins <tim@robbins.dropbear.id.au> MFC after: 1 month
* Still with asbestos longjohns on, completely PAMify login(1) and removedes2002-01-304-552/+392
| | | | | | code made redundant by various PAM modules (primarily pam_unix(8)). Sponsored by: DARPA, NAI Labs
* Back out rev 1.78, which is incorrect now that the PAM modules have beendes2002-01-291-3/+2
| | | | fixed to accept a NULL PAM_RHOST.
* Add -o option (POSIX.1-2001) to uudecode(1). Deprecate the -p optionmike2002-01-272-6/+44
| | | | | | | | (which allows one to redirect output to stdout); `-o /dev/stdout' is recommended instead. Submitted by: Joseph Mallett <jmallett@xMach.org> MFC after: 2 weeks
* Make usage message and man page synopsis reflect the fact that -ndwmalone2002-01-242-3/+5
| | | | | | | | and -c are mutually exclusive. PR: 34233 Submitted by: Gary W. Swearingen <swear@blarg.net> MFC after: 3 days
* Add new option HAVE_STRERROR to CFLAGS.dwmalone2002-01-241-1/+1
|
* Don't set PAM_RHOST, this is a local login.des2002-01-241-5/+1
| | | | Sponsored by: DARPA, NAI Labs
* Show arguments of command line optionscharnier2002-01-221-11/+21
| | | | Reviewed by: ru
* o Remove the -V [version number] option, since our version of at(1) nomike2002-01-223-43/+26
| | | | | | | longer resembles the original. o Remove references to `you' in the manual. Submitted by: Joe Halpin <joe.halpin@attbi.com>
* When running on a local terminal, set PAM_RHOST to the local hostname.des2002-01-211-2/+10
| | | | Sponsored by: DARPA, NAI Labs
* Link mail(1) to mailx per POSIX. Mail(1) isn't 100% POSIX compliant,mikeh2002-01-192-4/+7
| | | | | | but it is pretty close. Not objected to by: -standards
* I've been meaning to do this for a while. Add an underscore to thedillon2002-01-193-8/+8
| | | | | | | | time_to_xxx() and xxx_to_time() functions. e.g. _time_to_xxx() instead of time_to_xxx(), to make it more obvious that these are stopgap functions & placemarkers and not meant to create a defacto standard. They will eventually be replaced when a real standard comes out of committee.
* Back out PAM_CRED_ERR additionache2002-01-191-1/+0
|
* Add PAM_CRED_ERR as valid failure caseache2002-01-191-0/+1
|
* mdoc(7) police: bump document date for the -p change, tidy up the markup.ru2002-01-171-6/+3
|
* Fix a typo introduced in the previous delta. The mistake was minemike2002-01-171-1/+1
| | | | rather than the submitter's.
* Document fetch(1) reaction to SIGINFO.ru2002-01-161-0/+12
| | | | | | PR: docs/33640 Submitted by: Maxim Konovalov <maxim@macomnet.ru> Approved by: des
* Replace reference to ANSI C draft with standard.ru2002-01-161-4/+1
| | | | PR: docs/30731
* yp(4) -> yp(8).ru2002-01-143-3/+3
| | | | PR: docs/30797
* 'uname -p' prints the value of hw.machine_arch instead of hw.machine.nyan2002-01-142-8/+18
| | | | | | Reviewed by: imp No response from: -arch MFC after: 3 weeks
* Implement the POSIX 1003.1-2001 -r and -t options in at(1). Fix somemike2002-01-134-26/+157
| | | | | | | | minor issues in the rest of the source and manual. Submitted by: Joe Halpin <joe.halpin@attbi.com> Obtained from: touch(1) (partially) MFC after: 1 month
* Make substitutions in internal macros like $(@F:.o=.c) work.schweikh2002-01-121-1/+1
| | | | | | | | | | | | | This should not affect our build process, as find /usr/src -name Makefile | xargs grep '@[DF]' has no matches (other than FreeBSD.org email addresses :-) PR: bin/24377 Submitted by: Mark Valentine <mark@thuvia.demon.co.uk> Reviewed by: Matthew Emmerton <matt@gsicomp.on.ca> MFC after: 4 weeks
* Don't format lines that look like troff requests, forru2002-01-112-5/+28
| | | | | | | | compatibility with old fmt(1). New option -n permits formatting of lines beginning with a dot character. PR: bin/31392 MFC after: 3 days
* mdoc(7) police: oops, forgot about those interim XXX'es.ru2002-01-101-8/+4
|
* mdoc(7) police: tidy up.ru2002-01-101-212/+237
|
* - Add 4-digit year variants in the manpage, since at(1) alreadykeramida2002-01-101-6/+7
| | | | | | | understands them. PR: docs/32843 Submitted by: Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
* Replace -I${.OBJDIR} with -I. and split the CFLAGS line up into two lines.jhb2002-01-081-1/+2
| | | | Requested by: bde
* Remove gcc specific compiler flags, at least one of which doesn't work withjhb2002-01-081-2/+0
| | | | gcc 3.0.2. (-fstrict-prototypes)
* Use -I${.OBJDIR} -I${.CURDIR} rather than -I. so that this compiles in ajhb2002-01-081-1/+1
| | | | cross-build environment.
* Update for less v371ps2002-01-071-0/+4
|
* Add some missing years, fix Bach's birthday entry.tg2002-01-072-12/+11
|
* Remove duplicate entry for Descartes.grog2002-01-071-1/+0
| | | | | | PR: 33630 Submitted by: Christopher Elkins <chrise@scardini.com> MFC after: 2 weeks
* Update Judaic for year 2002. Name Josef as maintainer.dwmalone2002-01-051-187/+209
| | | | | PR: 33389 Submitted by: Josef Grosch <jgrosch@mooseriver.com>
* Argh...argv->argcguido2002-01-041-1/+1
|
* Fix the coredump that occurs when, from the tfpt prompt, a 'c' command isguido2002-01-041-1/+1
| | | | issued without an argument.
* Add opie lib dir to includes listache2002-01-033-1/+4
|
* Add myself.okazaki2002-01-021-0/+1
|
* A global is used even though the value iswosch2002-01-011-13/+13
| | | | | | passed through the function call. Submitted by: "Crist J . Clark" <cjc@freebsd.org>
* Correct typos.grog2001-12-311-2/+2
|
* Print open(2) flags in hex instread of decimal for clarity.alfred2001-12-301-2/+2
|
* Use LC_ALL to pick LC_COLLATE too (for strcoll())ache2001-12-301-1/+1
|
* Fixed bitrot in DPADD in rev.1.8.bde2001-12-291-1/+1
|
OpenPOWER on IntegriCloud