summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* General -Wall warning cleanup, part I.jkh1996-07-1258-257/+530
| | | | Submitted-By: Kent Vander Velden <graphix@iastate.edu>
* General -Wall warning cleanup, part I.jkh1996-07-12167-512/+675
| | | | Submitted-By: Kent Vander Velden <graphix@iastate.edu>
* Fixed two bugs in previous commit: be sure to include tcp_debug.h whendg1996-07-122-3/+6
| | | | TCPDEBUG is defined, and fix typo in TCPDEBUG2() macro.
* Fix braino in rev 1.30 fix; m_copy() the mbuf that has the headerfenner1996-07-121-2/+2
| | | | | | pulled up already. This bug can cause the first packet from a source to a group to be corrupted when it is delivered to a process listening on the mrouter.
* accross -> across.jfieber1996-07-122-17/+8
| | | | | | | & -> &amp;. Remove references to imaginary freebsd-policy mailing list. Submitted by: John Mulhollen <JMULHOLLEN@gcwf.com> Thomas Graichen <graichen@axp5.physik.fu-berlin.de>
* Remove some suspect sector size calculations which are also the sourcejkh1996-07-123-30/+3
| | | | | of some confusing messages from newfs (just judging by the number of people who point them out, anyway).
* Small changes so that this actually stands a chance of doing thegpalmer1996-07-121-2/+11
| | | | right thing...
* Bump RELDATE in -current to be greater than RELDATE in -stable (and hencepeter1996-07-121-2/+2
| | | | | | | | 2.1.5-RELEASE). This will obviously be set "for real" closer to the time. (some ports use this to differentiate the two branches /dev/kmem kernel architectures. This exact same procedure happened in November last year for the 2.1 RELEASE as well.)
* Fix something I broke with CDROM installation (well, I knew my firstjkh1996-07-1210-50/+66
| | | | test CD would turn at least one bug up :-).
* Fixed brackets in usage message.bde1996-07-121-8/+10
| | | | Reformatted some of recent changes to KNF.
* Staticized some variables.bde1996-07-121-5/+12
| | | | | | | | | | | | | | Fixed initialization of pipe_pgid - don't default to pid 0 (swapper) for SIGIO. Added comments about other implicit initializations, mostly for struct stat. Fixed initialization of st_mode. S_IFSOCK was for when pipes were sockets. It is probably safe to fix the bogus S_ISFIFO() now that pipes can be distinguished from sockets in all cases. Don't return ENOSYS for inappropriate ioctls.
* Use a big delta in adjtime() for big negative adjustments as well asbde1996-07-121-2/+2
| | | | | | | | for big positive adjustments. The existence of big adjustments may be a bug (it's not documented...) but there was no good reason for the asymmetric behaviour. Reviewed by: wollman
* Staticized a few variables.bde1996-07-126-18/+27
| | | | Fixed warnings about unused variables.
* Removed "optimization" using gcc's builtin memcpy instead of bcopy.bde1996-07-122-10/+4
| | | | | There is little difference now since the amount copied is large, and bcopy will become much faster on some machines.
* Renamed upa to p0upa to match p0upt.bde1996-07-123-42/+42
| | | | Cleaned up some comments.
* Export `dumpmag' to utilities but not to the kernel.bde1996-07-122-6/+8
| | | | Restored a truncated comment.
* Fixed cloned comments about npx traps to match context.bde1996-07-123-15/+24
|
* Add whereobj target to find that pesky obj dirpst1996-07-121-1/+17
|
* Include <sys/types.h> before including <grp.h> so that this doesn'tbde1996-07-121-9/+13
| | | | | | depend on <stdio.h> bogusly including <sys/types.h> Reordered includes to satisfy KNF rules.
* Removed obsolete definition of PIPE_NBIO.bde1996-07-121-2/+1
|
* Moved the definition of DEBUGMSG() from asm.h to start.S. This macrobde1996-07-122-13/+13
| | | | | | | | is only appropriate to use in the special environment of start.S (real mode plus some conventions about not saving registers), and asm.h is supposed to be for generic macros. Removed some unnecessary parentheses.
* Moved the definition of `bsize' out of a DO_BAD144 ifdef so that thisbde1996-07-121-2/+2
| | | | compiles when DO_BAD144 is not defined.
* Moved the definition of dflt_name to the correct file (table.c is only forbde1996-07-123-5/+8
| | | | explicitly initialized data) and made it conditional on NAMEBLOCK.
* Fixed some speling, punctuation.. and spac ing errors.bde1996-07-122-19/+19
|
* Fixed operand order for shld and shrd.bde1996-07-122-164/+160
| | | | | | Finished the constant poisoning that was begun in rev.1.14. Consts aren't very poisonous (or useful) unless -Wcast-qual is in CFLAGS, and it isn't in the default CFLAGS.
* Don't use NULL in non-pointer contexts.bde1996-07-1213-54/+50
|
* Changed all sprintf() calls to snprintf().nate1996-07-125-39/+52
| | | | | | | | | Obtained from: Christos Zoulas <christos@deshaw.com> via NetBSD PR 2621, [ slightly modified since we don't use libcompat anymore. ] I'm not sure if this fixes the rdist security bug completely, but it sure can't hurt!
* Add amanda default portpst1996-07-111-1/+2
|
* Set shells to nonexistent where appropriatepst1996-07-111-3/+3
|
* Add ability to override sendmail .cf file specification.pst1996-07-111-3/+8
| | | | Add creation of ppp.log file since we rotate it now.
* Make the menu height calculation actually work.jkh1996-07-119-27/+27
| | | | Make a menu more self-explanatory at user request.
* 1. Remove some ancient bogons from when I initially added dialogMenuItemjkh1996-07-115-63/+21
| | | | | support. 2. Have message boxes say "Continue" instead of "Exit"
* Add some comments explaining what APM_DSVALUE_BUG does no that I knownate1996-07-112-6/+20
| | | | | | | what it does and why it's needed. Now I have to figure out how to fix the bug. :) [ No functional changes ]
* Modify the kernel to use the new pr_usrreqs interface rather than the oldwollman1996-07-1115-295/+566
| | | | | | | | | | | | | | pr_usrreq mechanism which was poorly designed and error-prone. This commit renames pr_usrreq to pr_ousrreq so that old code which depended on it would break in an obvious manner. This commit also implements the new interface for TCP, although the old function is left as an example (#ifdef'ed out). This commit ALSO fixes a longstanding bug in the TCP timer processing (introduced by davidg on 1995/04/12) which caused timer processing on a TCB to always stop after a single timer had expired (because it misinterpreted the return value from tcp_usrreq() to indicate that the TCB had been deleted). Finally, some code related to polling has been deleted from if.c because it is not relevant t -current and doesn't look at all like my current code.
* Added Johann Tonsing <jtonsing@mikom.csir.co.za> for his PCCARDnate1996-07-111-1/+2
| | | | submission.
* In num_tok, allow the user to specify '0' as plain '0' instead ofnate1996-07-111-2/+3
| | | | | | forcing them to use '00', and/or '0x0'. Submitted by: Johann Tonsing <jtonsing@mikom.csir.co.za>
* Merge.jkh1996-07-112-2/+6
|
* Fix a couple of whoopers which somehow went undetected until now.jkh1996-07-113-56/+66
|
* Added my name as a co-ordinator for the APM/PCCARD stuff, and updatednate1996-07-111-11/+13
| | | | the entrys to reflect more current reality.
* Another man page with a messed up .Dd line.mpp1996-07-111-1/+1
|
* Use the correct format for the ".Dd" (man page date) line.mpp1996-07-111-1/+1
|
* A *QUICK* pass through this man page to make it conform to mdocmpp1996-07-111-43/+44
| | | | | | | | | | standards and to clean up some of the English. The job is nowhere complete. This man page would be a good project for someone who knows something about the firewall software, and would like to contribute to the documentation effort. Many of the things in this man page are out of date and do not reflect reality.
* Fix some spelling errors.mpp1996-07-113-6/+6
|
* Add divert.4 to the list of man pages that are installed.mpp1996-07-111-1/+1
|
* Fix a spelling error.mpp1996-07-111-1/+1
|
* Add a man page for the "aic" deive (Adaptec AIC 6260/6360 SCSI controllermpp1996-07-112-2/+50
| | | | | | chips). Obtained from: NetBSD
* Add a man page for the "wt" device (Archive/Wangtec QIC-02 & QIC-36mpp1996-07-112-2/+47
| | | | | | interface boards). Submitted by: NetBSD
* Minor style fixup.mpp1996-07-111-2/+2
|
* Add a man page for the "ncr" device (NCR 53C810 & 5C825 SCSI controllers).mpp1996-07-113-2/+89
| | | | Obtained from: NetBSD
* Add a man page for the "ep" device (3com 3c5x9 ethernet card).mpp1996-07-112-2/+126
| | | | Obtained from: NetBSD
OpenPOWER on IntegriCloud