]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/log
FreeBSD/FreeBSD.git
28 years agoComment out the:
peter [Thu, 27 Jun 1996 06:00:52 +0000 (06:00 +0000)]
Comment out the:
 .if exists(contrib)
 SUBDIR+= contrib
 .endif
because it now tries to decend into the new contrib dir which doesn't
have a Makefile.

28 years agoImprove performance with very large user databases by increasing
wpaul [Thu, 27 Jun 1996 05:42:01 +0000 (05:42 +0000)]
Improve performance with very large user databases by increasing
hash table size from 256 to 1024.

Generate output that looks more like the SunOS mknetid: uses a space
instead of tabs for white space.

Fix typo in comment in hash.h: Groupit -> Groupid.

28 years agoAdded libftpio to 'includes'.
nate [Wed, 26 Jun 1996 22:47:52 +0000 (22:47 +0000)]
Added libftpio to 'includes'.

28 years agoAdd a missing space in a comment
gpalmer [Wed, 26 Jun 1996 21:12:28 +0000 (21:12 +0000)]
Add a missing space in a comment

28 years agoAdd -Wall to CFLAGS
gpalmer [Wed, 26 Jun 1996 20:49:41 +0000 (20:49 +0000)]
Add -Wall to CFLAGS

28 years agoMakefile:
gpalmer [Wed, 26 Jun 1996 20:31:11 +0000 (20:31 +0000)]
Makefile:
Add -Wall to CFLAGS

ftpio.h:
It's ftpGetModTime, not ftpModTime

28 years agoCorrect comment relating to pty's. There can be 256 (probably
gpalmer [Wed, 26 Jun 1996 19:42:06 +0000 (19:42 +0000)]
Correct comment relating to pty's. There can be 256 (probably
higher actually, but that's all our MAKEDEV supports at this time)

28 years agoFix for " CERT Advisory CA-96.12 - Vulnerability in suidperl"
nate [Wed, 26 Jun 1996 19:12:25 +0000 (19:12 +0000)]
Fix for " CERT Advisory CA-96.12 - Vulnerability in suidperl"

Submitted by: The Perl Gods as described in the advisory

28 years agoCorrect minor syntactical error.
jkh [Wed, 26 Jun 1996 19:06:11 +0000 (19:06 +0000)]
Correct minor syntactical error.

28 years agobmaked tclsh
phk [Wed, 26 Jun 1996 17:52:19 +0000 (17:52 +0000)]
bmaked tclsh

28 years agoBmaked tcl 7.5
phk [Wed, 26 Jun 1996 17:48:13 +0000 (17:48 +0000)]
Bmaked tcl 7.5

28 years agoThis script will help bmake tcl.
phk [Wed, 26 Jun 1996 17:47:14 +0000 (17:47 +0000)]
This script will help bmake tcl.

28 years agoThis first appeared in 2.1.5. Correct comment.
markm [Wed, 26 Jun 1996 17:11:04 +0000 (17:11 +0000)]
This first appeared in 2.1.5. Correct comment.

28 years agoFixed bug in pasting 8bit char (ache).
sos [Wed, 26 Jun 1996 13:04:53 +0000 (13:04 +0000)]
Fixed bug in pasting 8bit char (ache).
Added linefeeds in cuts that extend beyond one line.
Prepared for the mousefunctions to be used in nontext modes.

28 years agoAllow argv[0] to be a command also.
jkh [Wed, 26 Jun 1996 09:09:30 +0000 (09:09 +0000)]
Allow argv[0] to be a command also.

28 years agoThis commit was generated by cvs2svn to compensate for changes in r16756,
phk [Wed, 26 Jun 1996 06:06:43 +0000 (06:06 +0000)]
This commit was generated by cvs2svn to compensate for changes in r16756,
which included commits to RCS files with non-trunk default branches.

28 years agoTcl 7.5, various makefiles will be updated to use these sources as soon
phk [Wed, 26 Jun 1996 06:06:43 +0000 (06:06 +0000)]
Tcl 7.5, various makefiles will be updated to use these sources as soon
as I get these back down to my machine.

28 years agoInitial revision
phk [Wed, 26 Jun 1996 06:06:30 +0000 (06:06 +0000)]
Initial revision

28 years agoYet another fix for the line continuation bug in sed. Keith's patch
dg [Wed, 26 Jun 1996 05:54:32 +0000 (05:54 +0000)]
Yet another fix for the line continuation bug in sed. Keith's patch
introduced a new bug. This fix appears to work correctly. Fixes PR#1350.

Submitted by: mark@linus.demon.co.uk (Mark Valentine)

28 years agoFix a problem that caused system crashes after physio. This problem
dyson [Wed, 26 Jun 1996 05:52:15 +0000 (05:52 +0000)]
Fix a problem that caused system crashes after physio.  This problem
was due to non-aligned 64K transfers taking 17 pages.  We currently
do not support >16 page transfers.  The transfer is unfortunately truncated,
but since buffers are usually malloced, this is a problem only once in
a while.  Savecore is a culprit, but tar/cpio usually aren't.  This
is NOT the final fix (which is likely a bouncing scheme), but will at
least keep the system from crashing.

28 years agoAdd the contrib collection to supfiles.
phk [Wed, 26 Jun 1996 05:40:58 +0000 (05:40 +0000)]
Add the contrib collection to supfiles.
(SUP-mirrors take notice !)

28 years agoThis commit does a couple of things:
dyson [Wed, 26 Jun 1996 05:39:27 +0000 (05:39 +0000)]
This commit does a couple of things:
Re-enables the RSS limiting, and the routine is now tail-recursive,
making it much more safe (eliminates the possiblity of kernel stack
overflow.) Also, the RSS limiting is a little more intelligent about
finding the likely objects that are pushing the process over the limit.

Added some sysctls that help with VM system tuning.

New sysctl features:
1) Enable/disable lru pageout algorithm.
vm.pageout_algorithm = 0, default algorithm that works
well, especially using X windows and heavy
memory loading.  Can have adverse effects,
sometimes slowing down program loading.

vm.pageout_algorithm = 1, close to true LRU.  Works much
better than clock, etc.  Does not work as well as
the default algorithm in general.  Certain memory
"malloc" type benchmarks work a little better with
this setting.

Please give me feedback on the performance results
associated with these.

2) Enable/disable swapping.
vm.swapping_enabled = 1, default.

vm.swapping_enabled = 0, useful for cases where swapping
degrades performance.

The config option "NO_SWAPPING" is still operative, and
takes precedence over the sysctl.  If "NO_SWAPPING" is
specified, the sysctl still exists, but "vm.swapping_enabled"
is hard-wired to "0".

Each of these can be changed "on the fly."

28 years agoThis commit was generated by cvs2svn to compensate for changes in r16748,
jmallett [Wed, 26 Jun 1996 05:36:21 +0000 (05:36 +0000)]
This commit was generated by cvs2svn to compensate for changes in r16748,
which included commits to RCS files with non-trunk default branches.

28 years agoImport OpenBSD m4 as of today.
jmallett [Wed, 26 Jun 1996 05:36:21 +0000 (05:36 +0000)]
Import OpenBSD m4 as of today.

28 years agoWhen page table pages were removed from process address space, the
dyson [Wed, 26 Jun 1996 05:05:52 +0000 (05:05 +0000)]
When page table pages were removed from process address space, the
resident page stats were not being decremented.  This mode corrects
that problem.

28 years agoAdd some formatting bug work-arounds.
jfieber [Wed, 26 Jun 1996 03:28:51 +0000 (03:28 +0000)]
Add some formatting bug work-arounds.

28 years agoFix another obj-misusage bogon. This will all get revisited for
jkh [Wed, 26 Jun 1996 01:24:54 +0000 (01:24 +0000)]
Fix another obj-misusage bogon.  This will all get revisited for
2.2-release (and this file beaten on with a crowbar, as it so richly
deserves).

28 years agoNew handbook entry on how to use ports, re-written almost completely
jraynard [Wed, 26 Jun 1996 01:18:53 +0000 (01:18 +0000)]
New handbook entry on how to use ports, re-written almost completely
from scratch.

28 years agoMake GET request and response parsing HTTP/1.0 compatible
ache [Tue, 25 Jun 1996 21:33:18 +0000 (21:33 +0000)]
Make GET request and response parsing HTTP/1.0 compatible

28 years agoDon't print number (garbadge) if media catalog is inactive
ache [Tue, 25 Jun 1996 21:01:27 +0000 (21:01 +0000)]
Don't print number (garbadge) if media catalog is inactive

28 years agoTurn on mknetid.
wpaul [Tue, 25 Jun 1996 20:32:30 +0000 (20:32 +0000)]
Turn on mknetid.

28 years agoAdded #include of <machine/md_var.h>. This will be needed when
bde [Tue, 25 Jun 1996 20:31:01 +0000 (20:31 +0000)]
Added #include of <machine/md_var.h>.  This will be needed when
some declarations are moved from <machine/cpufunc.h> to better
places.

28 years agoToss old mknetid script into the attic.
wpaul [Tue, 25 Jun 1996 20:28:07 +0000 (20:28 +0000)]
Toss old mknetid script into the attic.

Adjust things slightly to support the new mknetid program.

28 years agoThis commit was generated by cvs2svn to compensate for changes in r16728,
wpaul [Tue, 25 Jun 1996 20:26:38 +0000 (20:26 +0000)]
This commit was generated by cvs2svn to compensate for changes in r16728,
which included commits to RCS files with non-trunk default branches.

28 years ago(This import had better work correctly or so help me I'll move to
wpaul [Tue, 25 Jun 1996 20:26:38 +0000 (20:26 +0000)]
(This import had better work correctly or so help me I'll move to
the Himalayas and become a hermit.)

Import new mknetid program. This replaces the crufty, soon to be defunct
mknetid script packaged with ypserv.

This program parses the group, passwd, hosts and netid databases into
the netid.byname map. Duplicate checking is performed using hash tables.
Testing on my 486DX2/66 with FreeBSD 2.1.0 showed that this program can
process a 30,000-entry passwd database into a netid map (along with
assorted group and hosts information) in about 22 seconds. On my SPARC IPX
with SunOS 4.1.3, it takes about 15 seconds. This compares favorably with
the SunOS mknetid program, which parses the same database(s) in 13 seconds.
(With smaller databases, my program is actually slightly faster. Go
figure.)

28 years agoFixed the `machine' link. It pointed to the wrong place, and was created
bde [Tue, 25 Jun 1996 20:13:12 +0000 (20:13 +0000)]
Fixed the `machine' link.  It pointed to the wrong place, and was created
too late to be used in all cases.  It should probably be created (early)
in bsd.kmod.mk for all LKMs.

Use cc instead of cpp | as for the same reasons as in the kernel makefile.
CFLAGS isn't split up as well as in the kernel makefile, but cc doesn't
pass compiler warning flags to cpp, so there is no need to split it.

28 years agotrap.c:
bde [Tue, 25 Jun 1996 20:02:16 +0000 (20:02 +0000)]
trap.c:
Fixed profiling of system times.  It was pre-4.4Lite and didn't support
statclocks.  System times were too small by a factor of 8.

Handle deferred profiling ticks the 4.4Lite way: use addupc_task() instead
of addupc().  Call addupc_task() directly instead of using the ADDUPC()
macro.

Removed vestigial support for PROFTIMER.

switch.s:
Removed addupc().

resourcevar.h:
Removed ADDUPC() and declarations of addupc().

cpu.h:
Updated a comment.  i386's never were tahoe's, and the deferred profiling
tick became (possibly) multiple ticks in 4.4Lite.

Obtained from: mostly from NetBSD

28 years agoSave John Polstra's initial fix for profiling for reference. The
bde [Tue, 25 Jun 1996 19:25:25 +0000 (19:25 +0000)]
Save John Polstra's initial fix for profiling for reference.  The
multiplication in addupc() overflowed for addresses >= 256K, assuming
the usual profil(2) scale parameter of 0x8000.  addupc() will go away
soon.

Submitted by: John Polstra <jdp@polstra.com>

28 years agoAdjust documentation for 2.1.5
jkh [Tue, 25 Jun 1996 19:05:49 +0000 (19:05 +0000)]
Adjust documentation for 2.1.5

28 years agoAdd sys/ioctl.h to includes. Shut up a warning.
markm [Tue, 25 Jun 1996 18:56:19 +0000 (18:56 +0000)]
Add sys/ioctl.h to includes. Shut up a warning.

28 years agoFixed comparisons so that preposterously large (>= 0x80000000) brk values
bde [Tue, 25 Jun 1996 18:54:42 +0000 (18:54 +0000)]
Fixed comparisons so that preposterously large (>= 0x80000000) brk values
aren't silently converted to minbrk.  This stops malloc(INT_MAX) from
dumping core.  Small values are still silently converted.  They should
be an error.  sbrk() doesn't do any range checking or conversions or
overflow checking.

Moved PIC_EPILOGUE invocation to a more natural place where it
obviously doesn't interfere with the comparison.

28 years agoMake "Fake" turn off more potentially system-nuking options.
jkh [Tue, 25 Jun 1996 18:41:10 +0000 (18:41 +0000)]
Make "Fake" turn off more potentially system-nuking options.

28 years agoThe way sendmail.cf is installed here is gross and needs to be totally
jkh [Tue, 25 Jun 1996 18:05:58 +0000 (18:05 +0000)]
The way sendmail.cf is installed here is gross and needs to be totally
redone.  For now, use the objlink target to give it the obj directory
it needs.

28 years agoChange the way moused talk to syscons, now its only delivering mouseevents
sos [Tue, 25 Jun 1996 08:54:57 +0000 (08:54 +0000)]
Change the way moused talk to syscons, now its only delivering mouseevents
via an ioctl (MOUSE_ACTION).
Fixed a couple of bugs (destructive cursor, uncut, jitter).
Now applications can use the mouse via the MOUSE_MODE ioctl, its
possible to have a signal sent on mouseevents, makeing an event loop
in the application take over mouseevents.

28 years agoAdd worm to /usr/share/examples
jkh [Tue, 25 Jun 1996 08:40:13 +0000 (08:40 +0000)]
Add worm to /usr/share/examples

28 years agoHandle tabs in INDEX files.
jkh [Tue, 25 Jun 1996 04:28:23 +0000 (04:28 +0000)]
Handle tabs in INDEX files.
Display full, un-truncated version of description in status line.

28 years agoUpdate to reflect new ipfw syntax.
alex [Tue, 25 Jun 1996 03:15:17 +0000 (03:15 +0000)]
Update to reflect new ipfw syntax.

28 years agoFixed end condition for clustered reads.
dg [Tue, 25 Jun 1996 03:00:44 +0000 (03:00 +0000)]
Fixed end condition for clustered reads.

Submitted by: Kirk McKusick via Lite-2 and email

28 years agoLimit the scan for preloading pte's to the end of an object.
dyson [Tue, 25 Jun 1996 00:39:21 +0000 (00:39 +0000)]
Limit the scan for preloading pte's to the end of an object.

28 years agoFix some serious problems with limits checking in the sbrk(2)/brk(2)
dyson [Tue, 25 Jun 1996 00:36:46 +0000 (00:36 +0000)]
Fix some serious problems with limits checking in the sbrk(2)/brk(2)
code.
Reviewed by: bde

28 years agoAllow fragment checking to work with specific protocols.
alex [Tue, 25 Jun 1996 00:22:20 +0000 (00:22 +0000)]
Allow fragment checking to work with specific protocols.
Reviewed by: phk

Reject the addition of rules that will never match (for example,
1.2.3.4:255.255.255.0).  User level utilities specify the policy by either
masking the IP address for the user (as ipfw(8) does) or rejecting the
entry with an error.  In either case, the kernel should not modify chain
entries to make them work.

28 years agoRemove another extraneous setting of if_lastchange
gpalmer [Mon, 24 Jun 1996 21:56:39 +0000 (21:56 +0000)]
Remove another extraneous setting of if_lastchange

28 years agoAdd default targets for cleandepend and objlink.
jkh [Mon, 24 Jun 1996 21:33:23 +0000 (21:33 +0000)]
Add default targets for cleandepend and objlink.
Submitted by: Michael Hancock <michaelh@cet.co.jp>

28 years agoStart vi.recovery processing after ldconfig.
pst [Mon, 24 Jun 1996 19:00:28 +0000 (19:00 +0000)]
Start vi.recovery processing after ldconfig.
Closes misc/1346 which has bitten me more times than I care to remember.

28 years agoAdd the (commented out) OBJLINK hook.
nate [Mon, 24 Jun 1996 16:50:39 +0000 (16:50 +0000)]
Add the (commented out) OBJLINK hook.

28 years agoEnsure that media protection is released before attempting to eject the
gibbs [Mon, 24 Jun 1996 04:54:32 +0000 (04:54 +0000)]
Ensure that media protection is released before attempting to eject the
media in all cases.

Remove SCSI_2_MAX_DENSITY_CODE definition and rely on the device to tell
us if we attempt an invalid setting.

Closes PR 1245.

Submitted by: fredriks@mcs.com a few changes by me.

28 years agoRemove RSS limiting until I rewrite the code to be non-recursive. The
dyson [Mon, 24 Jun 1996 04:30:24 +0000 (04:30 +0000)]
Remove RSS limiting until I rewrite the code to be non-recursive.  The
code can overrun the kernel stack under very stressful conditions.

28 years agoBring in my changes for removing the pestilent obj links (unless you
jkh [Mon, 24 Jun 1996 04:26:21 +0000 (04:26 +0000)]
Bring in my changes for removing the pestilent obj links (unless you
really want them) from /usr/src.  This is the final version of the
patches, incorporating the feedback I've received from -current.

28 years agoAdjust docs to match reality.
jkh [Mon, 24 Jun 1996 02:22:15 +0000 (02:22 +0000)]
Adjust docs to match reality.

28 years agoAdjust the reference to ftpBinary() in the (unused) TCL wrappers.
jkh [Mon, 24 Jun 1996 02:19:27 +0000 (02:19 +0000)]
Adjust the reference to ftpBinary() in the (unused) TCL wrappers.

28 years agoupdate Istanbul
wosch [Mon, 24 Jun 1996 01:28:56 +0000 (01:28 +0000)]
update  Istanbul
Submitted by: jhs

28 years agoupdate E-Mail address of Julian Stacey
wosch [Mon, 24 Jun 1996 01:21:58 +0000 (01:21 +0000)]
update E-Mail address  of Julian Stacey

28 years agoDo not exit if ftpGetSize() returns a value < 0. You may well try to
jmz [Mon, 24 Jun 1996 01:03:05 +0000 (01:03 +0000)]
Do not exit if ftpGetSize() returns a value < 0. You may well try to
fetch a whole <directory>.tar.gz on a server running wu-ftp.

28 years agoWhoops: had a couple of hardcoded instances of '/var/yp/' that shouldn't
wpaul [Sun, 23 Jun 1996 22:44:06 +0000 (22:44 +0000)]
Whoops: had a couple of hardcoded instances of '/var/yp/' that shouldn't
have been there. Fixed to use yp_dir, which can be set on the command line.

28 years agoAdd moused hooks (OFF by default)
ache [Sun, 23 Jun 1996 20:54:42 +0000 (20:54 +0000)]
Add moused hooks (OFF by default)

28 years agoFix address mask calculation when using ':' syntax. Allow a mask
alex [Sun, 23 Jun 1996 20:47:51 +0000 (20:47 +0000)]
Fix address mask calculation when using ':' syntax.  Allow a mask
of /0 to have the desired effect.  Normalize IP addresses that
won't match a given mask (i.e. 1.2.3.4/24 becomes 1.2.3.0/24).
Submitted by R. Bezuidenhout <rbezuide@mikom.csir.co.za>

Code formatting and "frag" display fixes.

28 years agoFix problem with scb flag handing that crept in with the SCB paging support.
gibbs [Sun, 23 Jun 1996 20:02:37 +0000 (20:02 +0000)]
Fix problem with scb flag handing that crept in with the SCB paging support.
This only affected userland initiated device resets (using the reset command
from cdplay for instance).

Convert some spaces to tabs.

28 years agoOops, forget the fact that LINT compiles (fixing previos PAS commi)
ache [Sun, 23 Jun 1996 19:46:46 +0000 (19:46 +0000)]
Oops, forget the fact that LINT compiles (fixing previos PAS commi)

28 years agoDescribe the way how to add OPL for PAS without conflict
ache [Sun, 23 Jun 1996 19:41:34 +0000 (19:41 +0000)]
Describe the way how to add OPL for PAS without conflict

28 years agoUpdate the BUGS section, now that we've got some experience in using
joerg [Sun, 23 Jun 1996 18:27:12 +0000 (18:27 +0000)]
Update the BUGS section, now that we've got some experience in using
this driver.

28 years agoUnstaticize psratio and staticize profprocs. psratio needs to be exported
bde [Sun, 23 Jun 1996 17:40:47 +0000 (17:40 +0000)]
Unstaticize psratio and staticize profprocs.  psratio needs to be exported
to trap.c to fix user profiling.

28 years agoDon't truncate minor or major numbers in the nfsv3 client.
bde [Sun, 23 Jun 1996 17:19:25 +0000 (17:19 +0000)]
Don't truncate minor or major numbers in the nfsv3 client.

28 years agoMoved declarations of static functions to the correct file. This fixes
bde [Sun, 23 Jun 1996 17:12:05 +0000 (17:12 +0000)]
Moved declarations of static functions to the correct file.  This fixes
hundreds of warnings from -Wunused in lkm/syscons/*.

28 years agoRemoved unused #include. Linux doesn't support SCO consoles.
bde [Sun, 23 Jun 1996 17:08:11 +0000 (17:08 +0000)]
Removed unused #include.  Linux doesn't support SCO consoles.

28 years agoRun the headers through cpp -dM to find the #defines. The direct search
bde [Sun, 23 Jun 1996 17:05:10 +0000 (17:05 +0000)]
Run the headers through cpp -dM to find the #defines.  The direct search
has been broken at least since 4.4Lite moved most of the #defines out of
<sys/ioctl.h>.  This should be done better.  Only a few headers are
searched.

Added some #includes so that ioctl.c compiles.  The networking headers
have a maze of undocumented interdependencies and ioctl.c now actually
supports networking ioctls.

28 years agoAdd some examples on burning CDRs - I figured it was about time to
jkh [Sun, 23 Jun 1996 16:34:44 +0000 (16:34 +0000)]
Add some examples on burning CDRs - I figured it was about time to
document it! :-)

28 years agoForward-declare a struct tag so that this doesn't depend on a side effect
bde [Sun, 23 Jun 1996 15:02:02 +0000 (15:02 +0000)]
Forward-declare a struct tag so that this doesn't depend on a side effect
of indirectly including <i386/isa/isa_device.h>.

28 years agoDon't add -I/sys to CFLAGS. bsd.kmod.mk adds the correct (relative)
bde [Sun, 23 Jun 1996 14:58:14 +0000 (14:58 +0000)]
Don't add -I/sys to CFLAGS.  bsd.kmod.mk adds the correct (relative)
path.

28 years agoDon't claim to be a VFS_LKM - generate vnode_if.h by putting it in SRCS.
bde [Sun, 23 Jun 1996 14:56:04 +0000 (14:56 +0000)]
Don't claim to be a VFS_LKM - generate vnode_if.h by putting it in SRCS.

Don't add -I/sys to CFLAGS.  bsd.kmod.mk adds the correct (relative)
path.

28 years agoDon't (re)define ACTUALLY_LKM_NOT_KERNEL. It wasn't even used by the
bde [Sun, 23 Jun 1996 14:52:20 +0000 (14:52 +0000)]
Don't (re)define ACTUALLY_LKM_NOT_KERNEL.  It wasn't even used by the
joy driver proper.

Don't add -I/sys to CFLAGS.  bsd.kmod.mk adds the correct (relative)
path.

28 years agoFinished converting ipfw to use opt_ipfw.h.
bde [Sun, 23 Jun 1996 14:43:55 +0000 (14:43 +0000)]
Finished converting ipfw to use opt_ipfw.h.

28 years agoDon't (re)define or use ACTUALLY_LKM_NOT_KERNEL - use the existing
bde [Sun, 23 Jun 1996 14:41:55 +0000 (14:41 +0000)]
Don't (re)define or use ACTUALLY_LKM_NOT_KERNEL - use the existing
definition of QCAM_MODULE for everything involving LKM'ness.

Makefile:
Don't add -I/sys to CFLAGS.  bsd.kmod.mk adds the correct (relative)
path.

28 years agoUse IPFIREWALL_MODULE instead of ACTUALLY_LKM_NOT_KERNEL to indicate
bde [Sun, 23 Jun 1996 14:28:02 +0000 (14:28 +0000)]
Use IPFIREWALL_MODULE instead of ACTUALLY_LKM_NOT_KERNEL to indicate
LKM'ness.  ACTUALLY_LKM_NOT_KERNEL is supposed to be so ugly that it
only gets used until <machine/conf.h> goes away.  bsd.kmod.mk should
define a better-named general macro for this.  Some places use
PSEUDO_LKM.  This is another bad name.

Makefile:
Added IPFIREWALL_VERBOSE_LIMIT option (commented out).

28 years agoDisabled unusable union lkm.
bde [Sun, 23 Jun 1996 13:31:20 +0000 (13:31 +0000)]
Disabled unusable union lkm.

28 years agoDescribe MAXMEM better. Enable it by default. (It's a positive option.
bde [Sun, 23 Jun 1996 13:28:04 +0000 (13:28 +0000)]
Describe MAXMEM better.  Enable it by default.  (It's a positive option.
Only negative options in LINT should be enabled.)

28 years agoRemoved -g from CFLAGS.
bde [Sun, 23 Jun 1996 13:11:59 +0000 (13:11 +0000)]
Removed -g from CFLAGS.

28 years agoMade strip failures fatal. This fixes PR 1328.
bde [Sun, 23 Jun 1996 12:59:18 +0000 (12:59 +0000)]
Made strip failures fatal.  This fixes PR 1328.

28 years agoAdd moused to targets.
sos [Sun, 23 Jun 1996 12:13:02 +0000 (12:13 +0000)]
Add moused to targets.

28 years agoRemoved rubbish that stopped usr.bin/ncftp from going away.
bde [Sun, 23 Jun 1996 10:38:15 +0000 (10:38 +0000)]
Removed rubbish that stopped usr.bin/ncftp from going away.

28 years agoRemove an un-necessary call to microtime() to set if_lastchange
gpalmer [Sun, 23 Jun 1996 00:51:05 +0000 (00:51 +0000)]
Remove an un-necessary call to microtime() to set if_lastchange
as it is set in the call to if_down in the line above

28 years agoFix a couple of bogus casts to off_t that caused dumpfs to lseek negative
peter [Sun, 23 Jun 1996 00:05:04 +0000 (00:05 +0000)]
Fix a couple of bogus casts to off_t that caused dumpfs to lseek negative
on filesystems > 2GB (which causes the disk slice code to call Debugger!!)

28 years agoSpecify that daemon(3) returns int, and standardise the
gpalmer [Sat, 22 Jun 1996 23:46:00 +0000 (23:46 +0000)]
Specify that daemon(3) returns int, and standardise the
phrasing in the ERRORS section a bit, as well as now specifying
the return status.

28 years agoAdjust the copyright to match reality, remove printing of gratuitous newline.
jkh [Sat, 22 Jun 1996 23:24:13 +0000 (23:24 +0000)]
Adjust the copyright to match reality, remove printing of gratuitous newline.

28 years agoFix a bug in the way binary/ascii settings were being done. New
jkh [Sat, 22 Jun 1996 21:43:56 +0000 (21:43 +0000)]
Fix a bug in the way binary/ascii settings were being done.  New
ftpAscii() call sets connection to ascii as counterpart to ftpBinary().

28 years agoClean up more bogons:
jkh [Sat, 22 Jun 1996 21:42:14 +0000 (21:42 +0000)]
Clean up more bogons:
1. Add a copyright at the top.
2. Make passive and binary modes work with new ftpio semantics.
3. Add a `mirror' (-m) flag which only copies the remote file if it's
   not the same size or is newer.

28 years agoAdd /var/log/ppp.log from iij ppp
pst [Sat, 22 Jun 1996 21:34:03 +0000 (21:34 +0000)]
Add /var/log/ppp.log from iij ppp

28 years agoCorrect spelling errors (i before e except after c :-) )
gpalmer [Sat, 22 Jun 1996 21:20:56 +0000 (21:20 +0000)]
Correct spelling errors (i before e except after c :-) )

Submitted by: James Raynard <jraynard>

28 years agoBack out security changes until pst review them
ache [Sat, 22 Jun 1996 21:10:19 +0000 (21:10 +0000)]
Back out security changes until pst review them

28 years agoAddress Andrey's complaints:
jkh [Sat, 22 Jun 1996 20:16:57 +0000 (20:16 +0000)]
Address Andrey's complaints:

1. Always use file modtime, and if that's not usable then default
   to current time.
2. Allow HTTP_TIMEOUT to be set as an environment variable to override
   default.
3. Handle SIGTERM.

28 years agoSubmitted by: Wolfram Schneider <wosch@cs.tu-berlin.de>
jraynard [Sat, 22 Jun 1996 18:05:15 +0000 (18:05 +0000)]
Submitted by:  Wolfram Schneider <wosch@cs.tu-berlin.de>
Document the fact that the tracefile argument must lead to a regular file.

Also took the opportunity to remove the spurious "Errors" entry
relating to filenames with the high-order bit set and add $Id$.

(More of the same to follow if there are no objections).