History log of /freebsd-10.1-release/sbin/kldconfig/kldconfig.c
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
# 272461 02-Oct-2014 gjb

Copy stable/10@r272459 to releng/10.1 as part of
the 10.1-RELEASE process.

Approved by: re (implicit)
Sponsored by: The FreeBSD Foundation

# 256281 10-Oct-2013 gjb

Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.

Approved by: re (implicit)
Sponsored by: The FreeBSD Foundation


# 152169 07-Nov-2005 ru

Fix malloc size (visible on amd64, with "kldconfig -r").


# 141611 10-Feb-2005 ru

Sync program's usage() with manpage's SYNOPSIS.


# 126643 05-Mar-2004 markm

Make NULL a (void*)0 whereever possible, and fix the warnings(-Werror)
that this provokes. "Wherever possible" means "In the kernel OR NOT
C++" (implying C).

There are places where (void *) pointers are not valid, such as for
function pointers, but in the special case of (void *)0, agreement
settles on it being OK.

Most of the fixes were NULL where an integer zero was needed; many
of the fixes were NULL where ascii <nul> ('\0') was needed, and a
few were just "other".

Tested on: i386 sparc64


# 114589 03-May-2003 obrien

Use __FBSDID() to quiet GCC 3.3 warnings.


# 113936 23-Apr-2003 johan

style(9): use NULL when assigning/comparing a char *,
consitently compare fileid with 0 using == and !=.

Reviewed by: silence on @audit


# 79002 29-Jun-2001 roam

Properly cast a size argument to an unsigned type.

Thanks to: dd for noticing the need for a cast.


# 78982 29-Jun-2001 dd

Silence warnings on the Alpha: don't assume size_t is an int.


# 78977 29-Jun-2001 roam

Add kldconfig(8), a utility to modify the kernel module search path.

Reviewed by: -arch, -audit