By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 2110
Collapse All | Expand All

(-)tdm/backend/getfd.c.orig (+4 lines)
Lines 22-29 Link Here
22
	char arg;
22
	char arg;
23
23
24
	arg = 0;
24
	arg = 0;
25
#ifdef __OpenBSD__
26
	return arg;
27
#else
25
	return (ioctl(fd, KDGKBTYPE, &arg) == 0
28
	return (ioctl(fd, KDGKBTYPE, &arg) == 0
26
		&& ((arg == KB_101) || (arg == KB_84)));
29
		&& ((arg == KB_101) || (arg == KB_84)));
30
#endif
27
}
31
}
28
32
29
static int
33
static int

Return to bug 2110