mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-05 18:22:52 +00:00
Actually copy the class field over from the kernel to the user structure.
This commit is contained in:
parent
cf0ec51aec
commit
ef46188e27
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=7802
1 changed files with 2 additions and 1 deletions
|
@ -22,7 +22,7 @@
|
|||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $Id: kern_devconf.c,v 1.7 1995/02/14 06:34:49 phk Exp $
|
||||
* $Id: kern_devconf.c,v 1.8 1995/03/17 04:17:32 davidg Exp $
|
||||
*/
|
||||
|
||||
/*
|
||||
|
@ -119,6 +119,7 @@ make_devconf(struct kern_devconf *kdc, struct devconf *dc)
|
|||
|
||||
MACHDEP_COPYDEV(dc, kdc);
|
||||
dc->dc_state = kdc->kdc_state;
|
||||
dc->dc_class = kdc->kdc_class;
|
||||
dc->dc_datalen = kdc->kdc_datalen;
|
||||
|
||||
strncpy(dc->dc_descr, kdc->kdc_description, sizeof dc->dc_descr);
|
||||
|
|
Loading…
Reference in a new issue