Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Make the -q option DTRT in the compat mode. | ru | 2003-10-03 | 2 | -1/+2 |
| | | | | PR: 48210 | ||||
* | remove unneeded include of route.h | sam | 2003-10-03 | 1 | -0/+1 |
| | | | | Supported by: FreeBSD Foundation | ||||
* | Fix a bug that prevented exists() from finding "foo/", "foo/." | ru | 2003-10-02 | 1 | -3/+8 |
| | | | | | | and "foo/.." when ".PATH: foo" was also given. PR: bin/34062 | ||||
* | Document the recently added `O' modifier. | ru | 2003-10-02 | 1 | -0/+2 |
| | |||||
* | tftp.1: | simon | 2003-10-01 | 2 | -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. | grog | 2003-10-01 | 1 | -2/+1 |
| | |||||
* | Get some holidays more correct. This isn't helped by the lack of firm | grog | 2003-10-01 | 1 | -3/+4 |
| | | | | information from the government web sites. | ||||
* | Remove Australian holidays. They're wrong, and more correct ones are | grog | 2003-10-01 | 1 | -3/+0 |
| | | | | in calendar.australia. | ||||
* | According to information from the Ministry of Health, Labour and Welfare, | bland | 2003-09-29 | 1 | -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. | grog | 2003-09-29 | 1 | -0/+1 |
| | | | | Requested by: Andrew Lankford <arlankfo@141.com> | ||||
* | Add Michaelmas. | grog | 2003-09-28 | 1 | -0/+1 |
| | |||||
* | - Clarification to how command line arguments are processed. | kensmith | 2003-09-28 | 1 | -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 calls | tjr | 2003-09-28 | 2 | -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 makes | tjr | 2003-09-28 | 1 | -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 makes | tjr | 2003-09-28 | 2 | -104/+58 |
| | | | | | | rlogin work properly without COMPAT_43. Obtained from: NetBSD (mycroft) | ||||
* | Remove remnants of Kerberos -Kkx options. | tjr | 2003-09-28 | 2 | -25/+4 |
| | |||||
* | Use the 3-component version of the KERN_PROC_PROC sysctl. | tjr | 2003-09-27 | 1 | -1/+3 |
| | |||||
* | Fix bug introduced in version 1.246 with the addition of NO_TOOLCHAIN. | marcel | 2003-09-24 | 1 | -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. | fjoe | 2003-09-23 | 1 | -3/+4 |
| | | | | PR: 53980 (partially) | ||||
* | Implement the O modifier. The O modifier sorts the words in a | marcel | 2003-09-18 | 1 | -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. | marcel | 2003-09-17 | 1 | -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. | ru | 2003-09-14 | 2 | -6/+7 |
| | |||||
* | - Cut out the code that caches the "." directory out of Dir_Init() | ru | 2003-09-14 | 4 | -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. | simon | 2003-09-13 | 1 | -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 and | tjr | 2003-09-11 | 4 | -462/+0 |
| | | | | no a.out toolchain. | ||||
* | mdoc(7): Use the new feature of the .In macro. | ru | 2003-09-08 | 2 | -4/+4 |
| | |||||
* | Finish the reversion of rev. 1.52. | ru | 2003-09-08 | 1 | -3/+2 |
| | |||||
* | Command line variables take precedence over global variables. | ru | 2003-09-08 | 1 | -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 is | charnier | 2003-09-07 | 1 | -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(). | charnier | 2003-09-07 | 2 | -11/+6 |
| | |||||
* | Introduce arguments the standard way. In .Ar command ..., ... is not an | charnier | 2003-09-07 | 1 | -4/+4 |
| | | | | argument, command is. | ||||
* | Remove duplicate #include. Do not \n terminate errx() arg. | charnier | 2003-09-07 | 1 | -2/+3 |
| | |||||
* | Add FBSDID. Use errx() instead of fprintf()/exit(). Call exit() at the end | charnier | 2003-09-07 | 1 | -92/+44 |
| | | | | of usage() and make the code aware of that. | ||||
* | The .Fn function. Dot terminate sentences. Use .Bd/.Ed instead of .Ar to | charnier | 2003-09-07 | 1 | -25/+35 |
| | | | | emphasize examples of source definition file. | ||||
* | Use KERN_PROC_PROC instead of KERN_PROC_ALL when enumerating processes so | tjr | 2003-09-07 | 1 | -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 when | imp | 2003-09-07 | 1 | -1/+1 |
| | | | | | | not define. Obtained From: NetBSD (rev 1.18; sjg) | ||||
* | Baud rate capability is `br', not `ba'. | hmp | 2003-09-06 | 1 | -1/+1 |
| | | | | | PR: docs/56426 Submitted by: FUJISHIMA Satsuki <sf@FreeBSD.ORG> | ||||
* | Removed another spurious semicolon forgotten in the previous commit. | schweikh | 2003-09-06 | 1 | -1/+1 |
| | |||||
* | Removed two spurious semicolons after function definitions. | schweikh | 2003-09-06 | 1 | -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. | obrien | 2003-09-06 | 10 | -936/+0 |
| | |||||
* | #include <runetype.h> directly for the definition of _CACHED_RUNES, needed | tjr | 2003-09-05 | 1 | -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. | roam | 2003-09-05 | 2 | -4/+4 |
| | | | | | | PR: 55925 Submitted by: Michael L. Squires <mikes@siralan.org> MFC after: 1 month | ||||
* | Fix typo: c89, not c88. | tjr | 2003-09-05 | 1 | -1/+1 |
| | |||||
* | Removed unused macro definition | dds | 2003-09-04 | 1 | -1/+1 |
| | | | | | Approved by: schweikh (mentor - blanket) MFC after: 6 weeks | ||||
* | Eliminate last three uses of varargs.h in the tree. These three files | kan | 2003-09-01 | 1 | -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. | phk | 2003-08-30 | 1 | -1/+1 |
| | | | | Spotted by: tjr | ||||
* | Introduce more knobs to slim down FreeBSD userland | phk | 2003-08-29 | 1 | -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) | dds | 2003-08-22 | 1 | -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). | markm | 2003-08-22 | 1 | -183/+79 |
| | | | | OK'ed by: peter (long time ago) | ||||
* | Warns fixes. Mainly unused headers/params/vars removal, but also | markm | 2003-08-22 | 7 | -28/+19 |
| | | | | some malloc cleanup. |