summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Correct some man page cross references and file location references.mpp1996-04-0731-59/+61
|
* KNFify the function definitions. It's harder to grep around when thejoerg1996-04-063-32/+50
| | | | function names don't start in column 1.
* Fix a typo.joerg1996-04-061-2/+2
|
* Don't immediately give up if a single read() or write() wasn'tjoerg1996-04-061-5/+31
| | | | | sufficient to transfer all the data from stdin, or to stdout. Working on pipes causes further fragmentation.
* Clarify some paths in the man pages.markm1996-04-062-6/+8
|
* Mention other possible errors that could be caused by the F_[GS]ETOWNjoerg1996-04-061-1/+19
| | | | commands.
* Correct some cross references and some path names.mpp1996-04-065-9/+9
|
* Use the correct syntax for checking if /etc/rc.firewall exists.mpp1996-04-061-2/+2
|
* Add Jake Hamby as the new webmaster.jkh1996-04-061-2/+2
|
* Here is a patch for a little bug in the WaitForString routine. The problemache1996-04-061-4/+14
| | | | | | | | | | is when the matched string spans the end of the inbuff. This fix allocates twice the IBSIZE so that it can keep the last and the current text to search in the inbuff so that the match won't fail if it gets truncated by the read. It also warns if the search string is to long and truncates it. Submitted by: Dough Ambrisco <ambrisco@ambrisco.roble.com>
* Submitted by: archie@tribe.comjulian1996-04-062-6/+78
| | | | | | allow the user to install using a Numeric GID or UID. this brings it in to line with chgrp and chown, ans is required by some people using FreeBSD in a product.
* For nonexisten time use proper diagnostic instead of bad format and usageache1996-04-061-2/+2
|
* pccard.c:gpalmer1996-04-062-0/+3
| | | | | | | | #include <i386/include/clock.h> to get sysbeep() prototype pcic.c: add appropriate #ifdef around a prototype to quiet GCC because fn decl. is also #ifdef'd.
* Change calendar to report the actual date for variable day events.mpp1996-04-066-37/+63
| | | | | | | | | | | | | | | | | | | | | | | E.g. for Easter, and entries like "04/SunFirst" calendar will now report: 04/05* Good Friday (2 days before easter) 04/07* First Sunday... instead of: Easter-2 Good Friday... 04/SunFirst First Sunday... I also modified the calendar files to use the variable day format for a lot of events so that they will be reported correctly. E.g. U.S. daylight savings time is now listed as: 04/SunFirst Daylight savings time... There are still a lot of wrong dates in there for some events that move from year to year, but I don't have a good calendar handy right now that I can use for reference.
* Switch 586/686 back to generic_bzero and #if 0'd the "optimized" code. Itdg1996-04-065-9/+11
| | | | | | turns out that it actually reduces performance in real-world cases. Noticed by: bde
* More info and more correctionsache1996-04-051-4/+8
|
* Describe new adjkerntz variant + various changes from jdpache1996-04-051-50/+91
|
* .Ql --> .Dvjoerg1996-04-051-7/+7
| | | | Submitted by: wollman
* remove BINGRP?=, BINOWN?=, BINMODE?=, STRIP?=wosch1996-04-051-44/+11
| | | | use .for loop for common targets
* $* -> $@wosch1996-04-051-18/+19
| | | | check exit code from $MKDEP_CPP, not sed(1)
* List tsleep & wakeup in the summary line so that they canmpp1996-04-051-2/+4
| | | | be found with "man -k".
* Add man page links for the SLIST_* and STAILQ_* macros that were addedmpp1996-04-051-0/+7
| | | | recently.
* Detect if /etc/wall_cmos_clock gone while adjkerntz paused.ache1996-04-051-1/+6
|
* Fixed a bug in DEVFS code that was producing "name slot allocation failed"scrappy1996-04-051-15/+12
| | | | messages.
* Fix adjkerntz expression priority.ache1996-04-052-6/+6
| | | | Make filetimes the same as DOS times for UTC cmos clock.
* Fix adjkerntz expression priorityache1996-04-055-15/+15
|
* Don't adjust file times for UTC clock to have the same timestampsache1996-04-052-8/+12
| | | | for DOS/FreeBSD.
* Dynamically sense /etc/wall_cmos_clock presence/absenseache1996-04-051-20/+8
|
* Xref clocks(7).joerg1996-04-058-6/+14
|
* Add clocks(7).joerg1996-04-052-1/+124
| | | | Submitted by: bde
* Added a note about the return value. Its been so long I can'tjmacd1996-04-051-0/+19
| | | | remember who suggested the 'caveat' section. Sorry.
* Fix error with multiply 'adjkerntz -a' copies running.ache1996-04-051-32/+86
| | | | | Manage adjkerntz kernel variable even for UTC clocks. Code cleanup.
* Add wall_cmos_clock sysctl variable, needed to manage adjkerntz even forache1996-04-0511-35/+59
| | | | UTC cmos clocks (needed for Local Timezone FSes)
* Add an `aux' field for some other gunk I'm doing.jkh1996-04-051-0/+1
|
* Mention the `amd' program version number. The amq(8) man pagejoerg1996-04-041-0/+1
| | | | mentions it as being Sun registered,.
* Work around a braindead signal handling in many newer HP printers.joerg1996-04-041-8/+26
| | | | | | | | | | | They don't have BUSY de-asserted by the time they ACK (and thus cause an interrupt). The workaround is to try seeing if the BUSY will be de-asserted soon, and if not, to use an incremental backoff and semi-polled mode instead of the fixed timeout with 1/2 s we've been using previously (that caused the printer to run really slooow). Printers that have been working previously should not be affected by this.
* Add a sysctl (net.inet.tcp.always_keepalive: 0) that when set will forcephk1996-04-041-2/+7
| | | | | | keepalive on all tcp sessions. Setsockopt(2) cannot override this setting. Maybe another one is needed that just changes the default for SO_KEEPALIVE ? Requested by: Joe Greco <jgreco@brasil.moneng.mei.com>
* Log TCP syn packets for ports we don't listen on.phk1996-04-043-5/+37
| | | | | | | | | Controlled by: sysctl net.inet.tcp.log_in_vain: 1 Log UDP syn packets for ports we don't listen on. Controlled by: sysctl net.inet.udp.log_in_vain: 1 Suggested by: Warren Toomey <wkt@cs.adfa.oz.au>
* Add rpc.statd and the stub rpc.lockd, as these build and are of some use topeter1996-04-041-2/+3
| | | | some people.
* Fixed a typo in the comment for sv_errsize.smpatel1996-04-041-2/+2
|
* Add a small message to the ``CAVEATS'' section saying if you get thegpalmer1996-04-033-3/+27
| | | | | warning about the root directory, then you could corrupt your filesystem if you write to it. Someone, please, feel free to improve this :-)
* add a `Warning:' to the message saying that the root directory is not agpalmer1996-04-032-4/+4
| | | | | multiple of the clustersize in length to try and reduce the number of questions we get on the subject.
* Makefile: Add new modes.c file to list of objects.sef1996-04-035-57/+497
| | | | | | | | | | printjob.c: Use termios instead of sgtty structs and ioctls; remove support for fs/fc/xs/xc capabilities, and replace them with the ms capability (stty-like words, instead of octal bit patterns). modes.c: Modified from stty's file, parses comma-seperated list of tty modes (e.g., "cs8,-paren,-opost"). Reviewed by: rgrimes, joerg
* Remove definitions and declarations for FS, FC, XS, XC variables, andsef1996-04-032-8/+2
| | | | | | replace them with MS char* variable. Reviewed by: rgrimes, joerg
* printcap.5: Remove fs,fc,xs,xc capability, and replace them with the mssef1996-04-032-10/+6
| | | | | | capability Reviewed by: rgrimes, joerg
* Improvementss to netbootphk1996-04-036-27/+78
| | | | | | | Initial but not yet functional PCI support. Reviewed by: phk Submitted by: Luigi Rizzo <luigi@labinfo.iet.unipi.it>
* Always pass a route structure when calling ip_output().wollman1996-04-031-2/+6
|
* Add skeleton firewall setup(s). Comments very welcome.phk1996-04-034-4/+146
|
* Add feature for tcp "established".phk1996-04-035-54/+43
| | | | | Change interface between netinet and ip_fw to be more general, and thus hopefully also support other ip filtering implementations.
* recognize "allow", "accept" and "pass"phk1996-04-031-6/+8
| | | | add new feature for "established"
OpenPOWER on IntegriCloud