1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-15 10:17:20 +00:00

Fixed name of /dev/fs/klog (it's not "log").

Submitted by:	"Marc G. Fournier" <scrappy@ki.net> and edited by me
This commit is contained in:
Bruce Evans 1996-03-27 19:45:28 +00:00
parent adcbf406c5
commit 27d02c9849
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=14851

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)subr_log.c 8.1 (Berkeley) 6/10/93
* $Id: subr_log.c,v 1.15 1995/12/08 23:21:33 phk Exp $
* $Id: subr_log.c,v 1.16 1995/12/14 08:31:40 phk Exp $
*/
/*
@ -254,8 +254,9 @@ log_drvinit(void *unused)
cdevsw_add(&dev,&log_cdevsw,NULL);
log_devsw_installed = 1;
#ifdef DEVFS
log_devfs_token = devfs_add_devsw(
"/", "log", &log_cdevsw, 0, DV_CHR, 0, 0, 0600);
log_devfs_token = devfs_add_devswf(&log_cdevsw, 0, DV_CHR,
UID_ROOT, GID_WHEEL, 0600,
"klog");
#endif
}
}