summaryrefslogtreecommitdiffstats
path: root/usr.bin
Commit message (Collapse)AuthorAgeFilesLines
* Make the -q option DTRT in the compat mode.ru2003-10-032-1/+2
| | | | PR: 48210
* remove unneeded include of route.hsam2003-10-031-0/+1
| | | | Supported by: FreeBSD Foundation
* Fix a bug that prevented exists() from finding "foo/", "foo/."ru2003-10-021-3/+8
| | | | | | and "foo/.." when ".PATH: foo" was also given. PR: bin/34062
* Document the recently added `O' modifier.ru2003-10-021-0/+2
|
* tftp.1:simon2003-10-012-6/+6
| | | | | | | | | | - Add the optional port argument to SYNOPSIS. main.c: - Sync usage with the manual page. Approved by: trhodes (main.c part) Obtained from: OpenBSD (jmc) MFC after: 2 weeks
* Remove a poorly chosen line break.grog2003-10-011-2/+1
|
* Get some holidays more correct. This isn't helped by the lack of firmgrog2003-10-011-3/+4
| | | | information from the government web sites.
* Remove Australian holidays. They're wrong, and more correct ones aregrog2003-10-011-3/+0
| | | | in calendar.australia.
* According to information from the Ministry of Health, Labour and Welfare,bland2003-09-291-1/+1
| | | | | | | | Japanese national holidays have been revised, and Respect-for-the-Aged Day will be on the third Monday of September from 2003 on. PR: 56695 Submitted by: Vitaly Musaev <vm@vitalius.net>
* Add St. Crispin's day.grog2003-09-291-0/+1
| | | | Requested by: Andrew Lankford <arlankfo@141.com>
* Add Michaelmas.grog2003-09-281-0/+1
|
* - Clarification to how command line arguments are processed.kensmith2003-09-281-0/+5
| | | | | | PR: docs/55613 Submitted by: gshapiro@freebsd.org Approved by: blackend (mentor)
* Use the new style struct sockaddr instead of osockaddr in system callstjr2003-09-282-2/+11
| | | | | | so that talk works without COMPAT_43. Obtained from: NetBSD (christos), Rumi Szabolcs
* Don't cast ioctl FIONREAD's argument to struct sgttyb *. This makestjr2003-09-281-1/+1
| | | | | | | no function changes, but removes an unnecessary reference to a deprecated struct. Obtained from: NetBSD (thorpej)
* Use the POSIX tty interface instead of the old interface. This makestjr2003-09-282-104/+58
| | | | | | rlogin work properly without COMPAT_43. Obtained from: NetBSD (mycroft)
* Remove remnants of Kerberos -Kkx options.tjr2003-09-282-25/+4
|
* Use the 3-component version of the KERN_PROC_PROC sysctl.tjr2003-09-271-1/+3
|
* Fix bug introduced in version 1.246 with the addition of NO_TOOLCHAIN.marcel2003-09-241-4/+7
| | | | | | | The c89, c99, lex and yacc subdirectories were bogusly added to the ${MACHINE_ARCH} != "ia64" case. Pointy hat: phk
* Do not cache and correctly free() dosmount entry in case of errors.fjoe2003-09-231-3/+4
| | | | PR: 53980 (partially)
* Implement the O modifier. The O modifier sorts the words in amarcel2003-09-181-1/+51
| | | | | | | variable. The implementation is based upon the patch sent to arch@, but modified to be compatible with NetBSD. The modifier that does a reverse sort has been dropped for now, but the ability to add one later has been preserved.
* Fix a `cast to pointer from integer of different size' warning.marcel2003-09-171-1/+1
| | | | | | | usage() has been made a (non-void) function so that it can be used in a pointer expression (see macro `next'). Widen the implied integer return type of usage() so that we can cast to a pointer without warnings.
* Get rid of duplicates.ru2003-09-142-6/+7
|
* - Cut out the code that caches the "." directory out of Dir_Init()ru2003-09-144-67/+87
| | | | | | | | | | into a separate function, Dir_InitDot(). - Postpone the current and object directories detection (and caching of the "." directory) until after all command line arguments are parsed. This makes the -C option DTRT. PR: bin/47149
* Make the description of the connect, get, and put commands clearer.simon2003-09-131-34/+43
| | | | | | | | Reported by: Gary W. Swearingen <underway@comcast.net> Submitted by: Jim Brown <jpb@sixshooter.v6.thrupoint.net> (original version) Reviewed by: ru PR: docs/36459 MFC after: 3 weeks
* Remove symorder. It's almost useless now that we have ELF kernels andtjr2003-09-114-462/+0
| | | | no a.out toolchain.
* mdoc(7): Use the new feature of the .In macro.ru2003-09-082-4/+4
|
* Finish the reversion of rev. 1.52.ru2003-09-081-3/+2
|
* Command line variables take precedence over global variables.ru2003-09-081-1/+1
| | | | | | | | | | | | | | Make this true in the .for loops too. The following fragment, FOO= foo bar all: .for f in ${FOO} @echo ${f} .endfor when run as "make FOO=xxx" should print "xxx". (OpenBSD had this bug fixed for some time.)
* Do not print the result of strftime() in case of failure, the content ischarnier2003-09-071-5/+3
| | | | | | indeterminate in such a case. The correct value for 2nd argument is sizeof(buf). Do not NUL-terminate the result string, strftime() will do it for us.
* Add FBSDID. Do not \n terminate warnx() argument. fprint() -> warnx().charnier2003-09-072-11/+6
|
* Introduce arguments the standard way. In .Ar command ..., ... is not ancharnier2003-09-071-4/+4
| | | | argument, command is.
* Remove duplicate #include. Do not \n terminate errx() arg.charnier2003-09-071-2/+3
|
* Add FBSDID. Use errx() instead of fprintf()/exit(). Call exit() at the endcharnier2003-09-071-92/+44
| | | | of usage() and make the code aware of that.
* The .Fn function. Dot terminate sentences. Use .Bd/.Ed instead of .Ar tocharnier2003-09-071-25/+35
| | | | emphasize examples of source definition file.
* Use KERN_PROC_PROC instead of KERN_PROC_ALL when enumerating processes sotjr2003-09-071-7/+4
| | | | | that we kill each process once, not once for every thread it owns. This avoids "No such process" warnings when killing threaded processes.
* Keep up with minor changes to NetBSD. Consider a variable empty whenimp2003-09-071-1/+1
| | | | | | not define. Obtained From: NetBSD (rev 1.18; sjg)
* Baud rate capability is `br', not `ba'.hmp2003-09-061-1/+1
| | | | | PR: docs/56426 Submitted by: FUJISHIMA Satsuki <sf@FreeBSD.ORG>
* Removed another spurious semicolon forgotten in the previous commit.schweikh2003-09-061-1/+1
|
* Removed two spurious semicolons after function definitions.schweikh2003-09-061-5/+5
| | | | | | | | Removed three spurious tabs on lines by themselves. PR: bin/56492 Submitted by: Stefan Farfeleder <stefan@fafoe.narf.at> MFC after: 6 weeks
* Finish the deorbital burn of the i386-only a.out toolchain.obrien2003-09-0610-936/+0
|
* #include <runetype.h> directly for the definition of _CACHED_RUNES, neededtjr2003-09-051-0/+1
| | | | | | by ldef.h, rather than relying on GCC-specific pollution from <ctype.h>. Noticed by: Stefan Farfeleder
* Change /dev/rsa0 and /dev/rwt0 references to sa0 and wt0.roam2003-09-052-4/+4
| | | | | | PR: 55925 Submitted by: Michael L. Squires <mikes@siralan.org> MFC after: 1 month
* Fix typo: c89, not c88.tjr2003-09-051-1/+1
|
* Removed unused macro definitiondds2003-09-041-1/+1
| | | | | Approved by: schweikh (mentor - blanket) MFC after: 6 weeks
* Eliminate last three uses of varargs.h in the tree. These three fileskan2003-09-011-1/+0
| | | | | were including varargs.h file but did not use any of its macros, so they escaped the clean-up before.
* Typo in last commit.phk2003-08-301-1/+1
| | | | Spotted by: tjr
* Introduce more knobs to slim down FreeBSD userlandphk2003-08-291-6/+17
| | | | | | | NO_TOOLCHAIN skips Compilers and Binutils NO_USB skips USB stuff NO_VINUM skips Vinum stuff NO_ACPI skips ACPI stuff
* - Document gencat(1)dds2003-08-221-2/+2
| | | | | | | - Fix grammar error and rationale for not using the command Approved by: schweikh (mentor) MFC after: 2 weeks
* Big cleanup. Remove unused stuff, make closer to style(9).markm2003-08-221-183/+79
| | | | OK'ed by: peter (long time ago)
* Warns fixes. Mainly unused headers/params/vars removal, but alsomarkm2003-08-227-28/+19
| | | | some malloc cleanup.
OpenPOWER on IntegriCloud