History log of /freebsd-9.3-release/sbin/kldconfig/kldconfig.c
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
# 267654 19-Jun-2014 gjb

Copy stable/9 to releng/9.3 as part of the 9.3-RELEASE cycle.

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

# 225736 22-Sep-2011 kensmith

Copy head to stable/9 as part of 9.0-RELEASE release cycle.

Approved by: re (implicit)


# 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