1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-03 12:35:02 +00:00

Fix ioctl to not get swallowed by ioctl code (i.e., make sure the darned

code sticks within 8 bits)

MFC after:	1 week
This commit is contained in:
Matt Jacob 2006-01-18 08:37:27 +00:00
parent 4d115fef9e
commit fba92123ac
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=154504

View File

@ -29,7 +29,7 @@
*
*/
#define SESIOC (('s' - 040) << 8)
#define SESIOC ('s' - 040)
#define SESIOC_GETNOBJ _IO(SESIOC, 1)
#define SESIOC_GETOBJMAP _IO(SESIOC, 2)
#define SESIOC_GETENCSTAT _IO(SESIOC, 3)