]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/log
FreeBSD/FreeBSD.git
22 years agoThis commit was generated by cvs2svn to compensate for changes in r92688,
Darren Reed [Tue, 19 Mar 2002 11:45:24 +0000 (11:45 +0000)]
This commit was generated by cvs2svn to compensate for changes in r92688,
which included commits to RCS files with non-trunk default branches.

22 years agoImport IPFilter 3.4.25
Darren Reed [Tue, 19 Mar 2002 11:45:24 +0000 (11:45 +0000)]
Import IPFilter 3.4.25

22 years agoThis commit was generated by cvs2svn to compensate for changes in r92686,
Darren Reed [Tue, 19 Mar 2002 11:45:20 +0000 (11:45 +0000)]
This commit was generated by cvs2svn to compensate for changes in r92686,
which included commits to RCS files with non-trunk default branches.

22 years agoImport IPFilter 3.4.25
Darren Reed [Tue, 19 Mar 2002 11:45:20 +0000 (11:45 +0000)]
Import IPFilter 3.4.25

22 years agofix conflicts (mostly damn rcs id's) generated by import
Darren Reed [Tue, 19 Mar 2002 11:44:16 +0000 (11:44 +0000)]
fix conflicts (mostly damn rcs id's) generated by import

22 years agoThis file is being removed pending the all clear on its licence by someone
Darren Reed [Tue, 19 Mar 2002 11:42:12 +0000 (11:42 +0000)]
This file is being removed pending the all clear on its licence by someone
else.

22 years agoThis commit was generated by cvs2svn to compensate for changes in r92680,
Darren Reed [Tue, 19 Mar 2002 11:30:21 +0000 (11:30 +0000)]
This commit was generated by cvs2svn to compensate for changes in r92680,
which included commits to RCS files with non-trunk default branches.

22 years agoImport IPFilter 3.4.25 (last version 3.4.20)
Darren Reed [Tue, 19 Mar 2002 11:30:21 +0000 (11:30 +0000)]
Import IPFilter 3.4.25 (last version 3.4.20)

22 years agoEnabling the SKI option is a guaranteed breakage for me. Interrupts no
Peter Wemm [Tue, 19 Mar 2002 11:21:12 +0000 (11:21 +0000)]
Enabling the SKI option is a guaranteed breakage for me.  Interrupts no
longer work.
I can only get a box to boot with 'options SMP'.

22 years agoMy ia64 box for some reason likes to fragment the beginning/end of memory
Peter Wemm [Tue, 19 Mar 2002 11:18:47 +0000 (11:18 +0000)]
My ia64 box for some reason likes to fragment the beginning/end of memory
a bit before handing it over to the OS.  I occasionally have 11
segments with several 8K or so fragments depending on nvram settings and
what I have done under loader(8) before booting.  This needs to be
revisited.

22 years agoFix some unused variables.
Peter Wemm [Tue, 19 Mar 2002 11:15:26 +0000 (11:15 +0000)]
Fix some unused variables.

22 years agoMove a couple of prototypes together instead of being incompletely
Peter Wemm [Tue, 19 Mar 2002 11:14:52 +0000 (11:14 +0000)]
Move a couple of prototypes together instead of being incompletely
scattered around.

22 years ago__func__ is a const char *, not a "string" that can be concatenated.
Peter Wemm [Tue, 19 Mar 2002 11:11:37 +0000 (11:11 +0000)]
__func__ is a const char *, not a "string" that can be concatenated.

22 years agoFix a pointer/int warning
Peter Wemm [Tue, 19 Mar 2002 11:10:30 +0000 (11:10 +0000)]
Fix a pointer/int warning

22 years ago#ifdef SMP some variables that are only used elsewhere under #ifdef SMP
Peter Wemm [Tue, 19 Mar 2002 11:10:03 +0000 (11:10 +0000)]
#ifdef SMP some variables that are only used elsewhere under #ifdef SMP
also.

22 years agoWork around an apparent compiler bug with gcc-3.1, although it might be
Peter Wemm [Tue, 19 Mar 2002 11:09:24 +0000 (11:09 +0000)]
Work around an apparent compiler bug with gcc-3.1, although it might be
a language feature that I do not know about.  gcc is complaining about
a left shift >= sizeof type, even when shifting a (cast) 64 bit type left
by 43 bits.

22 years agoBelieve it or not, I ran into the 32MB stack size limit using a natively
Peter Wemm [Tue, 19 Mar 2002 11:07:09 +0000 (11:07 +0000)]
Believe it or not, I ran into the 32MB stack size limit using a natively
hosted gcc.

22 years ago#if 0 out some unused code.
Peter Wemm [Tue, 19 Mar 2002 11:06:01 +0000 (11:06 +0000)]
#if 0 out some unused code.

22 years agoAdd some #includes after things got broken with the last round of
Peter Wemm [Tue, 19 Mar 2002 11:05:07 +0000 (11:05 +0000)]
Add some #includes after things got broken with the last round of
MI include file (<sys/smp.h> I think) tweaks.

22 years agoTurn off the ia64 ITC timecounter when SMP is present since it has the
Peter Wemm [Tue, 19 Mar 2002 11:03:48 +0000 (11:03 +0000)]
Turn off the ia64 ITC timecounter when SMP is present since it has the
same problem as the TSC on the x86 - ie: it is not synchronized.
#if 0 out some unused functions, ia64 doesn't calibrate clocks yet.

22 years agoFix a gcc-3.1+ warning.
Peter Wemm [Tue, 19 Mar 2002 11:02:06 +0000 (11:02 +0000)]
Fix a gcc-3.1+ warning.
warning: deprecated use of label at end of compound statement

ie: you cannot do this anymore:
switch(foo) {
....

default:
}

22 years agoPacify gcc-3.1+, initialize two variables to avoid -Wuninitialized
Peter Wemm [Tue, 19 Mar 2002 10:57:40 +0000 (10:57 +0000)]
Pacify gcc-3.1+, initialize two variables to avoid -Wuninitialized
warnings.

22 years agoFix warnings on gcc-3.1+ where __func__ is a const char * instead of a
Peter Wemm [Tue, 19 Mar 2002 10:56:46 +0000 (10:56 +0000)]
Fix warnings on gcc-3.1+ where __func__ is a const char * instead of a
string.

22 years agoRegen; post SMC id's and also pick up a previously forgotten regen(?).
Peter Wemm [Tue, 19 Mar 2002 10:55:39 +0000 (10:55 +0000)]
Regen; post SMC id's and also pick up a previously forgotten regen(?).

22 years agoAdd another SMC device ID and the hub ID that it went with.
Peter Wemm [Tue, 19 Mar 2002 10:54:40 +0000 (10:54 +0000)]
Add another SMC device ID and the hub ID that it went with.

22 years agoAdd the ia64 bus space tag for the IO ports (!).
Peter Wemm [Tue, 19 Mar 2002 10:53:33 +0000 (10:53 +0000)]
Add the ia64 bus space tag for the IO ports (!).
Add a #else and #error so that this doesn't go unnoticed again.

22 years agoUse the FreeBSD cross tools instead of the linux ones.
Peter Wemm [Tue, 19 Mar 2002 10:52:44 +0000 (10:52 +0000)]
Use the FreeBSD cross tools instead of the linux ones.

22 years agoAdd -ffreestanding to avoid printf/puts/putchar conversions
Peter Wemm [Tue, 19 Mar 2002 10:51:57 +0000 (10:51 +0000)]
Add -ffreestanding to avoid printf/puts/putchar conversions

22 years agoBoot from efifs first.
Peter Wemm [Tue, 19 Mar 2002 10:50:41 +0000 (10:50 +0000)]
Boot from efifs first.

22 years agogcc-3.1 likes to have extra { } around the internal array initializers in
Peter Wemm [Tue, 19 Mar 2002 10:50:09 +0000 (10:50 +0000)]
gcc-3.1 likes to have extra { } around the internal array initializers in
the GUID templates.

22 years agoThis is the first part of the new kernel memory allocator. This replaces
Jeff Roberson [Tue, 19 Mar 2002 09:11:49 +0000 (09:11 +0000)]
This is the first part of the new kernel memory allocator.  This replaces
malloc(9) and vm_zone with a slab like allocator.

Reviewed by: arch@

22 years agoRemove the kmembuckets stats in preparation for the UMA commit.
Jeff Roberson [Tue, 19 Mar 2002 08:45:55 +0000 (08:45 +0000)]
Remove the kmembuckets stats in preparation for the UMA commit.

22 years agoBacked out the part of the previous commit related to xargs. It just
Bruce Evans [Tue, 19 Mar 2002 08:20:44 +0000 (08:20 +0000)]
Backed out the part of the previous commit related to xargs.  It just
broke things, since "name=value ... cmd ..." only works for simple
commands (not for pipelines).

22 years agoAdd #include so that the previous change compiles.
Alan Cox [Tue, 19 Mar 2002 06:45:25 +0000 (06:45 +0000)]
Add #include so that the previous change compiles.

22 years agoRemoved env(1) commands. make(1) uses a real shell, and
Bruce Evans [Tue, 19 Mar 2002 06:30:24 +0000 (06:30 +0000)]
Removed env(1) commands.  make(1) uses a real shell, and
"env name=value ... cmd ..." is just a pessimized way of doing
"name=value ... cmd ..." in real shells.  Set the environment
(without using env(1)) before starting xargs so that env(1)
is not needed in "xargs env name=value ... cmd ..."

22 years agofix perfmon for DEVFS.
Alfred Perlstein [Tue, 19 Mar 2002 06:14:34 +0000 (06:14 +0000)]
fix perfmon for DEVFS.

PR: kern/36008

22 years agoRemoved bogus env(1) commands. make(1) uses a real shell, so
Bruce Evans [Tue, 19 Mar 2002 06:11:43 +0000 (06:11 +0000)]
Removed bogus env(1) commands.  make(1) uses a real shell, so
"env name=value ... cmd ..." was just a pessimized way of doing
"name=value ... cmd ...".  Note that make(1) can't optimize
either of these to an exec of env(1) or "cmd" even if the second
"..." is simple, since it can't tell that the shell metacharacter
in "name=value" is actually handled by env(1).

22 years agoRemoved "env" commands. "sh" is a real shell, so
Bruce Evans [Tue, 19 Mar 2002 05:58:36 +0000 (05:58 +0000)]
Removed "env" commands.  "sh" is a real shell, so
"env name=value ... sh ..." was just a pessimized way of doing
"name=value ... sh ...".

22 years agoMFen 1.303
Udo Erdelhoff [Tue, 19 Mar 2002 05:26:14 +0000 (05:26 +0000)]
MFen 1.303

22 years agoInitialize variables before use. This was needed to pass -Werror.
Jeff Roberson [Tue, 19 Mar 2002 05:14:23 +0000 (05:14 +0000)]
Initialize variables before use.  This was needed to pass -Werror.

Reviewed by: jake

22 years agoEliminate unnecessary calls to grow_stack() and useracc() from linux_sendsig()
Alan Cox [Tue, 19 Mar 2002 04:54:30 +0000 (04:54 +0000)]
Eliminate unnecessary calls to grow_stack() and useracc() from linux_sendsig()
and linux_rt_sendsig().  (See i386/i386/machdep.c revisions 1.503 and 1.504.)

22 years agoClose a race when vfs_syscalls.c:checkdirs() runs.
Alfred Perlstein [Tue, 19 Mar 2002 04:30:04 +0000 (04:30 +0000)]
Close a race when vfs_syscalls.c:checkdirs() runs.

To do this protect the filedesc pointer in the proc with PROC_LOCK
in both checkdirs() and kern_descrip.c:fdfree().

22 years agoFixed some printf format errors (hopefully all of the remaining daddr64_t
Bruce Evans [Tue, 19 Mar 2002 04:09:21 +0000 (04:09 +0000)]
Fixed some printf format errors (hopefully all of the remaining daddr64_t
ones for GENERIC, and all others on the same line as those).  Reformat
the printfs if necessary to avoid new long lones or old format printf
errors.

22 years agoThe previous commit missed fixing 2 old printf format errors and
Bruce Evans [Tue, 19 Mar 2002 04:07:29 +0000 (04:07 +0000)]
The previous commit missed fixing 2 old printf format errors and
introduced a format printf error.

22 years agoDon't try to generate ssh keys if ssh isn't installed.
Dag-Erling Smørgrav [Tue, 19 Mar 2002 03:45:02 +0000 (03:45 +0000)]
Don't try to generate ssh keys if ssh isn't installed.

22 years agoFix handling of filenames with spaces in them in the input file to
Juli Mallett [Tue, 19 Mar 2002 02:05:27 +0000 (02:05 +0000)]
Fix handling of filenames with spaces in them in the input file to
uudecode(1), as this behaviour was explicitly added in revision 1.12 as
the result of PR 2882.  Remove space (' ') from the delimiter characters
handed to strtok(3).

Reviewed by: mike
Approved by: mike
Pointy hat to: me

22 years agoIPFilter may need to be re-sync'ed even if we are not filtering, but
Crist J. Clark [Tue, 19 Mar 2002 01:56:04 +0000 (01:56 +0000)]
IPFilter may need to be re-sync'ed even if we are not filtering, but
only doing ipnat(8). Go back to using $ipfilter_active, but turn off
$ipfilter_active when loading ipl.ko has failed.

Submitted by: devet@devet.org (Arjan de Vet)
MFC after: 3 days

22 years agoFix printf warning caused by recent changes in bio_pblkno's type.
Andrew Gallatin [Tue, 19 Mar 2002 01:45:04 +0000 (01:45 +0000)]
Fix printf warning caused by recent changes in bio_pblkno's type.

22 years agoMake uudecode(1) use setmode(3) and getmode(3) instead of just blindly
Juli Mallett [Tue, 19 Mar 2002 00:44:07 +0000 (00:44 +0000)]
Make uudecode(1) use setmode(3) and getmode(3) instead of just blindly
chmodding using an octal mode, as uudecode needs to handle symbolic modes
as chmod and such do.

Suggested by: Tim J. Robbins <tim@robbins.id.au>

Also move meta-character (~ in this case) globbing to only if we are reading
the filename from the encoded file, as otherwise it is the shell's job.

Reviewed by: mike
Approved by: mike

22 years agoMFen.
Jun Kuriyama [Tue, 19 Mar 2002 00:41:57 +0000 (00:41 +0000)]
MFen.

22 years agoRename the (not really new but so far unused) sparc category to sparc64.
Dag-Erling Smørgrav [Tue, 19 Mar 2002 00:39:55 +0000 (00:39 +0000)]
Rename the (not really new but so far unused) sparc category to sparc64.

22 years agoUncomment the powerpc category. It maps to the freebsd-ppc mailing list.
Dag-Erling Smørgrav [Tue, 19 Mar 2002 00:28:25 +0000 (00:28 +0000)]
Uncomment the powerpc category.  It maps to the freebsd-ppc mailing list.

22 years agoAdd a "standards" category at mike@'s request.
Dag-Erling Smørgrav [Tue, 19 Mar 2002 00:22:03 +0000 (00:22 +0000)]
Add a "standards" category at mike@'s request.

22 years agoNew release note: SA-02:18.
Bruce A. Mah [Tue, 19 Mar 2002 00:19:53 +0000 (00:19 +0000)]
New release note:  SA-02:18.

22 years agoAdd an ia64 category; we'll need it sooner or later. Also add a commented-
Dag-Erling Smørgrav [Mon, 18 Mar 2002 23:56:04 +0000 (23:56 +0000)]
Add an ia64 category; we'll need it sooner or later.  Also add a commented-
out entry for powerpc; I'll enable it when the powerpc port gets its own
mailing list.

22 years agoFixed printf format errors in previous commit. %llu is no more suitable
Bruce Evans [Mon, 18 Mar 2002 23:38:16 +0000 (23:38 +0000)]
Fixed printf format errors in previous commit.  %llu is no more suitable
than %u for printing signed 64-bit types.  It fails on different machines,
and has the wrong signdness.

Fixed old printf format error on the same line.  %u is not suitable for
printing 32-bit types on all machines.

"Fixed" format printf error in previous commit.  This file is not
formatted in KNF.  Partially restore bug for bug compatibility: indent
the printf args too much, but don't format them for 160-column terminals.

22 years agoBump the cutoff mark for comparing files from 8 MB to 16 MB.
Dag-Erling Smørgrav [Mon, 18 Mar 2002 23:26:13 +0000 (23:26 +0000)]
Bump the cutoff mark for comparing files from 8 MB to 16 MB.

22 years agoFixed printf format errors in previous commit. %llu is no more suitable
Bruce Evans [Mon, 18 Mar 2002 23:24:00 +0000 (23:24 +0000)]
Fixed printf format errors in previous commit.  %llu is no more suitable
than %u for printing signed 64-bit types.  It fails on different machines,
and has the wrong signdness.

Fixed old printf format error on the same line.  %u is not suitable for
printing 32-bit types on all machines.

22 years agoFormats that print the block number need to be changed from %u to
Warner Losh [Mon, 18 Mar 2002 20:50:04 +0000 (20:50 +0000)]
Formats that print the block number need to be changed from %u to
%llu due to recent changes in bio_pblkno's type.

22 years agoFix wording (hopefully for the last time) of my summary of SA-02:13.
Bruce A. Mah [Mon, 18 Mar 2002 20:26:04 +0000 (20:26 +0000)]
Fix wording (hopefully for the last time) of my summary of SA-02:13.

Submitted by: ue
Reviewed by: nectar

22 years agoMFen 1.301
Udo Erdelhoff [Mon, 18 Mar 2002 19:41:51 +0000 (19:41 +0000)]
MFen 1.301

22 years agohave the SYSCALL_MODULES macro provide an initializer for the 'old_sysent'
Alfred Perlstein [Mon, 18 Mar 2002 18:53:18 +0000 (18:53 +0000)]
have the SYSCALL_MODULES macro provide an initializer for the 'old_sysent'
to avoid pedandic warnings.

22 years agoAdd a USB comm driver.
Josef Karthauser [Mon, 18 Mar 2002 18:23:42 +0000 (18:23 +0000)]
Add a USB comm driver.

Ported from NetBSD by: akiyama

22 years agoAdd the ERRATA file to the documentation menu and index.
Bruce A. Mah [Mon, 18 Mar 2002 17:34:28 +0000 (17:34 +0000)]
Add the ERRATA file to the documentation menu and index.

While I'm here, make the menu entries on the documentation menu begin
with "1" instead of "2".

Reviewed by: imp, rwatson, murray
Approved by: imp, rwatson, murray
MFC after: 1 week

22 years agomdoc(7) police: tidy up.
Ruslan Ermilov [Mon, 18 Mar 2002 16:52:32 +0000 (16:52 +0000)]
mdoc(7) police: tidy up.

22 years agomdoc(7) police: tidy up.
Ruslan Ermilov [Mon, 18 Mar 2002 16:40:07 +0000 (16:40 +0000)]
mdoc(7) police: tidy up.

22 years agomdoc(7) police: tidy up.
Ruslan Ermilov [Mon, 18 Mar 2002 16:29:26 +0000 (16:29 +0000)]
mdoc(7) police: tidy up.

22 years agomdoc(7) police: tidy up.
Ruslan Ermilov [Mon, 18 Mar 2002 16:18:33 +0000 (16:18 +0000)]
mdoc(7) police: tidy up.

22 years agoDon't forget auth-skey.c.
Dag-Erling Smørgrav [Mon, 18 Mar 2002 16:17:57 +0000 (16:17 +0000)]
Don't forget auth-skey.c.

22 years agoAdd missing commas. At least I didn't miss a period.
Warner Losh [Mon, 18 Mar 2002 16:10:00 +0000 (16:10 +0000)]
Add missing commas.  At least I didn't miss a period.

22 years agomdoc(7) police: fix SYNOPSIS, sort xrefs, kill extra whitespace.
Ruslan Ermilov [Mon, 18 Mar 2002 15:59:53 +0000 (15:59 +0000)]
mdoc(7) police: fix SYNOPSIS, sort xrefs, kill extra whitespace.

22 years agomdoc(7) police: nits.
Ruslan Ermilov [Mon, 18 Mar 2002 15:55:53 +0000 (15:55 +0000)]
mdoc(7) police: nits.

22 years agomdoc(7) police: sort xrefs, kill extra whitespace.
Ruslan Ermilov [Mon, 18 Mar 2002 15:52:28 +0000 (15:52 +0000)]
mdoc(7) police: sort xrefs, kill extra whitespace.

22 years agomdoc(7) police: tidy up.
Ruslan Ermilov [Mon, 18 Mar 2002 15:44:27 +0000 (15:44 +0000)]
mdoc(7) police: tidy up.

22 years agoRemove yet more vestiges of mount_mfs.
Ian Dowse [Mon, 18 Mar 2002 15:31:44 +0000 (15:31 +0000)]
Remove yet more vestiges of mount_mfs.

22 years agoBack out the modification of vm_map locks from lockmgr to sx locks. The
Brian Feldman [Mon, 18 Mar 2002 15:08:09 +0000 (15:08 +0000)]
Back out the modification of vm_map locks from lockmgr to sx locks.  The
best path forward now is likely to change the lockmgr locks to simple
sleep mutexes, then see if any extra contention it generates is greater
than removed overhead of managing local locking state information,
cost of extra calls into lockmgr, etc.

Additionally, making the vm_map lock a mutex and respecting it properly
will put us much closer to not needing Giant magic in vm.

22 years agoUnobfuscate VLAN trunking description.
Ruslan Ermilov [Mon, 18 Mar 2002 14:41:47 +0000 (14:41 +0000)]
Unobfuscate VLAN trunking description.

Reviewed by: luigi

22 years agomdoc(7) police: tidy up.
Ruslan Ermilov [Mon, 18 Mar 2002 14:35:22 +0000 (14:35 +0000)]
mdoc(7) police: tidy up.

22 years agoCleanup the chipset setup a bit.
Søren Schmidt [Mon, 18 Mar 2002 13:56:44 +0000 (13:56 +0000)]
Cleanup the chipset setup a bit.
Add some (for all I know unneeded) setup code for the rosb4.

22 years agomdoc(7) police: tidy up.
Ruslan Ermilov [Mon, 18 Mar 2002 13:52:30 +0000 (13:52 +0000)]
mdoc(7) police: tidy up.

22 years agoUnbreak the build of smbfs.ko.
Maxime Henrion [Mon, 18 Mar 2002 13:06:57 +0000 (13:06 +0000)]
Unbreak the build of smbfs.ko.

Reviewed by: sheldonh

22 years agomdoc(7) police: tidy up.
Ruslan Ermilov [Mon, 18 Mar 2002 13:02:33 +0000 (13:02 +0000)]
mdoc(7) police: tidy up.

22 years agoFix world breakage introduced by my recent modifications to
Crist J. Clark [Mon, 18 Mar 2002 12:55:28 +0000 (12:55 +0000)]
Fix world breakage introduced by my recent modifications to
chpass(8). The relations between libc, libpam, chpass, passwd, and
vipw are a mess and probably should be cleaned up.

Submitted by: Peter Pentchev <roam@ringlet.net>

22 years agoRemove the confusing XXX that should have been deleted in revision 1.5.
Ruslan Ermilov [Mon, 18 Mar 2002 12:49:03 +0000 (12:49 +0000)]
Remove the confusing XXX that should have been deleted in revision 1.5.

22 years agos/UNIX/FreeBSD/
Ruslan Ermilov [Mon, 18 Mar 2002 12:39:32 +0000 (12:39 +0000)]
s/UNIX/FreeBSD/

22 years agomdoc(7) police: macroize UNIX.
Ruslan Ermilov [Mon, 18 Mar 2002 12:38:33 +0000 (12:38 +0000)]
mdoc(7) police: macroize UNIX.

22 years agomdoc(7) police: nits.
Ruslan Ermilov [Mon, 18 Mar 2002 12:34:41 +0000 (12:34 +0000)]
mdoc(7) police: nits.

22 years agomdoc(7) police: Re-apply fixes from revision 1.2 that got completely
Ruslan Ermilov [Mon, 18 Mar 2002 12:25:33 +0000 (12:25 +0000)]
mdoc(7) police: Re-apply fixes from revision 1.2 that got completely
backed out by revision 1.4.  Fixed some more.

22 years agoAdd support for the ServerWorks CSB5 chips
Søren Schmidt [Mon, 18 Mar 2002 12:13:13 +0000 (12:13 +0000)]
Add support for the ServerWorks CSB5 chips

22 years agomdoc(7) police: markup nit.
Ruslan Ermilov [Mon, 18 Mar 2002 12:10:45 +0000 (12:10 +0000)]
mdoc(7) police: markup nit.

22 years agomdoc(7) police: tidy up.
Ruslan Ermilov [Mon, 18 Mar 2002 12:04:52 +0000 (12:04 +0000)]
mdoc(7) police: tidy up.

22 years agomdoc(7) police: pedantry.
Ruslan Ermilov [Mon, 18 Mar 2002 11:08:53 +0000 (11:08 +0000)]
mdoc(7) police: pedantry.

22 years agomdoc(7) police: markup nit.
Ruslan Ermilov [Mon, 18 Mar 2002 11:03:57 +0000 (11:03 +0000)]
mdoc(7) police: markup nit.

22 years agomdoc(7) police: tidy up.
Ruslan Ermilov [Mon, 18 Mar 2002 10:59:58 +0000 (10:59 +0000)]
mdoc(7) police: tidy up.

22 years agomdoc(7) police: fixed some wording, kill whitespace at EOL.
Ruslan Ermilov [Mon, 18 Mar 2002 10:52:09 +0000 (10:52 +0000)]
mdoc(7) police: fixed some wording, kill whitespace at EOL.

22 years agomdoc(7) police: macroize UNIX.
Ruslan Ermilov [Mon, 18 Mar 2002 10:43:49 +0000 (10:43 +0000)]
mdoc(7) police: macroize UNIX.

22 years agomdoc(7) police: tidy up.
Ruslan Ermilov [Mon, 18 Mar 2002 10:34:43 +0000 (10:34 +0000)]
mdoc(7) police: tidy up.

22 years agoRevive this file (which is used for opie rather than skey)
Dag-Erling Smørgrav [Mon, 18 Mar 2002 10:31:33 +0000 (10:31 +0000)]
Revive this file (which is used for opie rather than skey)

22 years agoAdjust for OpenSSH 3.1.
Dag-Erling Smørgrav [Mon, 18 Mar 2002 10:20:33 +0000 (10:20 +0000)]
Adjust for OpenSSH 3.1.

Sponsored by: DARPA, NAI Labs

22 years agomdoc(7) police: nit.
Ruslan Ermilov [Mon, 18 Mar 2002 10:19:56 +0000 (10:19 +0000)]
mdoc(7) police: nit.