diff options
author | hm <hm@FreeBSD.org> | 2000-03-31 08:30:24 +0000 |
---|---|---|
committer | hm <hm@FreeBSD.org> | 2000-03-31 08:30:24 +0000 |
commit | 8a5adbab4a53ce87f8eaf5e2a4dd216d65d22d88 (patch) | |
tree | 3db00515bb043bbc674a0c4d7ecd7a3c14af367c | |
parent | 5ff131474a0fc8505233dab9b2450108b6bee948 (diff) | |
download | FreeBSD-src-8a5adbab4a53ce87f8eaf5e2a4dd216d65d22d88.zip FreeBSD-src-8a5adbab4a53ce87f8eaf5e2a4dd216d65d22d88.tar.gz |
Add support for "green" screensaver mode.
-rw-r--r-- | usr.sbin/pcvt/ispcvt/ispcvt.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/usr.sbin/pcvt/ispcvt/ispcvt.c b/usr.sbin/pcvt/ispcvt/ispcvt.c index 9dc4560..a3181a8 100644 --- a/usr.sbin/pcvt/ispcvt/ispcvt.c +++ b/usr.sbin/pcvt/ispcvt/ispcvt.c @@ -30,7 +30,7 @@ * ispcvt - check for pcvt driver running and its options * ------------------------------------------------------ * - * Last Edit-Date: [Mon Mar 27 16:29:18 2000] + * Last Edit-Date: [Fri Mar 31 10:24:43 2000] * * $FreeBSD$ * @@ -217,6 +217,10 @@ char *argv[]; fprintf(stderr,"XSERVER = %s", (pcvtinfo.compile_opts & CONF_XSERVER) ? "ON" : "OFF"); + next(); + fprintf(stderr,"PCVT_GREENSAVER = %s", + (pcvtinfo.compile_opts & CONF_GREENSAVER) ? "ON" : "OFF"); + fprintf(stderr,"\n\n"); } else /* !verbose */ |