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 (+6 lines)
Lines 4-10 Link Here
4
#include <fcntl.h>
4
#include <fcntl.h>
5
#include <errno.h>
5
#include <errno.h>
6
#include <sys/ioctl.h>
6
#include <sys/ioctl.h>
7
#ifdef __Linux__
7
#include <linux/kd.h>
8
#include <linux/kd.h>
9
#endif
8
#include "getfd.h"
10
#include "getfd.h"
9
11
10
/*
12
/*
Lines 20-27 Link Here
20
	char arg;
22
	char arg;
21
23
22
	arg = 0;
24
	arg = 0;
25
#ifdef __OpenBSD__
26
	return arg;
27
#else
23
	return (ioctl(fd, KDGKBTYPE, &arg) == 0
28
	return (ioctl(fd, KDGKBTYPE, &arg) == 0
24
		&& ((arg == KB_101) || (arg == KB_84)));
29
		&& ((arg == KB_101) || (arg == KB_84)));
30
#endif
25
}
31
}
26
32
27
static int
33
static int

Return to bug 2110