Remove S_IROTH from the make_dev() lines for iir-related devices. This

improves protection consistency with other storage devices (generally
root:operator,660).  This driver appears not to have an active
maintainer.

Submitted by:	kris
This commit is contained in:
rwatson 2002-12-27 16:28:31 +00:00
parent c2502c00ea
commit 4459bf4da1

View File

@ -105,12 +105,12 @@ gdt_make_dev(int unit)
#ifdef SDEV_PER_HBA
dev = make_dev(&iir_cdevsw, hba2minor(unit), UID_ROOT, GID_OPERATOR,
S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH, "iir%d", unit);
S_IRUSR | S_IWUSR | S_IRGRP, "iir%d", unit);
#else
if (sdev_made)
return (0);
dev = make_dev(&iir_cdevsw, 0, UID_ROOT, GID_OPERATOR,
S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH, "iir");
S_IRUSR | S_IWUSR | S_IRGRP, "iir");
sdev_made = 1;
#endif
return (dev);