| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
| |
This man page may be overdoing the cross references by referencing
man pages that are just links to other pages that are referenced.
kvm_uread() is still completely undocumented in kvm*.3.
|
|
|
|
| |
Sorted MLINKS.
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
consider a linker set definition to be sufficient reason to pull an
object module from an archive library. This caused undefined
symbols when linking with libpam.a using a.out. I solved it by
linking in the object that references the linker set in the "ld -r"
step.
|
| |
|
| |
|
|
|
|
| |
pstat, top, and systat.
|
| |
|
|
|
|
|
| |
pollution." Unfortunately, some of these globals are used by ftpd,
and I broke make world. Pointy hat, please.
|
|
|
|
|
|
| |
Fix localtime.c to deal with new magic number field.
Obtained from: ftp://elsie.nci.nih.gov/pub/tzcode1999a.tar.gz
|
|
|
|
|
|
| |
the Makefile handles des support by just including the single .c file.
Reviewed by: Mark Murray
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Secure Hashing Algorithm - 1 (SHA-1), along with the further
refinement of what $x$salt$hash means. With this new crypt the
following are all acceptable:
$1$
$MD5$
$SHA1$
Note: $2$ is used by OpenBSD's Blowfish, which I considered adding
as $BF$, but there is no actual need for it with SHA-1. However,
somebody wishing to add OpenBSD password support could easilly add
it in now.
There is also a malloc_crypt() available in the library now, which
behaves exactly the same as crypt(), but it uses a malloced buffer
instead of a static buffer. However, this is not standard so will
likely not be used much (at all).
Also, for those interested I did a brief speed test Pentium 166/MMX,
which shows the DES crypt to do approximately 2640 crypts a CPU second,
MD5 to do about 62 crypts a CPU second and SHA1 to do about 18 crypts
a CPU second.
Reviewed by: Mark Murray
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
argument implemented by the security patch in PR kern/7899 are violated.
PR: kern/7899
|
|
|
|
| |
otherwise we always get empty name.
|
|
|
|
|
|
|
| |
in manual page that indicated otherwise.
PR: docs/9517
Submitted by: David Malone <dwmalone@maths.tcd.ie>
|
| |
|
|
|
|
|
|
|
| |
thread trying to call pthread_exit() from a cleanup handler actually
works.
Submitted by: David Leonard <david.leonard@csee.uq.edu.au> OpenBSD
|
| |
|
|
|
|
| |
Submitted by: asami
|
|
|
|
|
|
|
|
|
|
| |
of getopt (as in, multiple input lines :). This is documented in the
man page and is used in the code, but unistd.h and stand.h do not
declare it. Incidentally, it prevents me fixing a bug in loader's
code... :-)
PR: misc/9373
Submitted by: "Daniel C. Sobral" <dcs@newsguy.com>
|
|
|
|
|
|
| |
Submitted by: Alexandre Snarskii <snar@paranoia.ru>
Approved by: John Birrell
Reminded me that I'd been sitting on this too long: snar@paranoia.ru
|
| |
|
|\
| |
| |
| | |
which included commits to RCS files with non-trunk default branches.
|
| |
| |
| |
| | |
Obtained from: ftp.cdrom.com:/pub/infozip/zlib
|
| |
| |
| |
| |
| | |
resulting NULL FILE *.
PR: 9403
|
| |
| |
| |
| |
| |
| |
| |
| | |
than ".so". The old extension conflicted with well-established
naming conventions for dynamically loadable modules.
The "clean" targets continue to remove ".so" files too, to deal with
old systems.
|
| |
| |
| |
| | |
Submitted by: dfr
|
| |
| |
| |
| | |
Ok'd by: jdp
|
| |
| |
| |
| |
| |
| |
| | |
- document that sysctl() and sysctlbyname() return 0 on success
- if the provided buffer is too small, set errno to ENOMEM and return -1
instead of returning ENOMEM.
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| |
| | |
s/bytes/characters/g to be consistent with Standard C terminology.
Update date and add RCS Id.
|
| |
| |
| |
| |
| | |
a potentally inflammatory comment from BUGS, and add a more useful comment
about the lack of reentrancy in the timezone-setting interface.
|
| |
| |
| |
| |
| |
| |
| |
| | |
is actually mounted on "/" can be determined using statfs() and is
in /dev. This fixes fsck operating on the wrong device when the
fs_spec entry is only an alias. The aliased case became more
dangerous when the ROOTSLICE_HUNT hack was committed in mount(8).
ROOTSLICE_HUNT may be unnecessary now.
|
| |
| |
| |
| | |
Removed bogus prerequisite <sys/types.h>.
|
| |
| |
| |
| |
| |
| | |
Set_Boot_Blocks() anyway and should thus have never been a part of
libdisk, it should have been provided by the client of libdisk since
passing the information in is already part of the API.
|
| |
| |
| |
| | |
are now there.
|
| |
| |
| |
| | |
somehow being available even on pure elf systems.
|
| | |
|
| |
| |
| |
| |
| | |
i386's with 64-bit longs -- the padding between mmap()'s 5th and 6th
is an int, not a long. The other mismatches were benign.
|
| |
| |
| |
| | |
Fixed `make cleandepend'. The default is null because SRCS is null.
|
| | |
|
| |
| |
| |
| |
| |
| |
| | |
bring in stddef.h so we can use NULL instead of 0 for pointer comparisons.
Hinted at by: Bruce Evans
Reviewed by: John Polstra
|
| |
| |
| |
| | |
compilers.
|