From 20207b60a800a36d95d04eddf0e7910babd54a0c Mon Sep 17 00:00:00 2001 From: Thomas Moestl Date: Mon, 11 Nov 2002 10:45:31 +0000 Subject: [PATCH] Declare the snp ioctl()s to work on udev_t, since that is what they really do and dev_t is defined differently in kernel and userland. Return a correctly formed udev from SNPGTTY. Reviewed by: dd --- sys/dev/snp/snp.c | 2 +- sys/sys/snoop.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/dev/snp/snp.c b/sys/dev/snp/snp.c index 4891666d0f9e..34e3e29d030d 100644 --- a/sys/dev/snp/snp.c +++ b/sys/dev/snp/snp.c @@ -544,7 +544,7 @@ snpioctl(dev, cmd, data, flags, td) * SNPGTTY happy, else we can't know what is device * major/minor for tty. */ - *((dev_t *)data) = snp->snp_target; + *((udev_t *)data) = dev2udev(snp->snp_target); break; case FIONBIO: diff --git a/sys/sys/snoop.h b/sys/sys/snoop.h index 992be9b43aad..026dd7aa1eab 100644 --- a/sys/sys/snoop.h +++ b/sys/sys/snoop.h @@ -30,8 +30,8 @@ * detached from its current tty. */ -#define SNPSTTY _IOW('T', 90, dev_t) -#define SNPGTTY _IOR('T', 89, dev_t) +#define SNPSTTY _IOW('T', 90, udev_t) +#define SNPGTTY _IOR('T', 89, udev_t) /* * These values would be returned by FIONREAD ioctl