summaryrefslogtreecommitdiff
path: root/libexec
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1995-12-16 13:51:01 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1995-12-16 13:51:01 +0000
commitd0e30c00d1e352f6dcae2a60d7270f8ba4a71d76 (patch)
treeb63c6941c1b145752d8ef786f33244157deb4213 /libexec
parent12cf882ebb84905c2a2505bedfa81af87876511a (diff)
handle time_t things that really are not time_t
Diffstat (limited to 'libexec')
-rw-r--r--libexec/rpc.rusersd/rusers_proc.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libexec/rpc.rusersd/rusers_proc.c b/libexec/rpc.rusersd/rusers_proc.c
index e528d98aa0f..e08e3fbea45 100644
--- a/libexec/rpc.rusersd/rusers_proc.c
+++ b/libexec/rpc.rusersd/rusers_proc.c
@@ -27,7 +27,7 @@
*/
#ifndef lint
-static char rcsid[] = "$Id: rusers_proc.c,v 1.1 1995/10/18 08:43:21 deraadt Exp $";
+static char rcsid[] = "$Id: rusers_proc.c,v 1.2 1995/12/16 13:50:46 deraadt Exp $";
#endif /* not lint */
#include <signal.h>
@@ -156,9 +156,9 @@ getidle(tty, display)
#if !defined(i386)
kbd_idle = getidle("kbd", NULL);
#else
-#if __GNUC__ >= 2
-#warning i386 console hack here
-#endif
+ /*
+ * XXX Icky i386 console hack.
+ */
kbd_idle = getidle("vga", NULL);
#endif
mouse_idle = getidle("mouse", NULL);