diff options
author | runge <runge> | 2006-09-17 18:08:23 +0000 |
---|---|---|
committer | runge <runge> | 2006-09-17 18:08:23 +0000 |
commit | dba5e098767b71bb017fa191cc3f07dc68437655 (patch) | |
tree | 2cc3de51656fb733b93baaa0b7a02a058801cd3c /x11vnc/pm.c | |
parent | 31d3a9fa8d081c573822fd8b66b9cdf70092c9d2 (diff) | |
download | libtdevnc-dba5e098767b71bb017fa191cc3f07dc68437655.tar.gz libtdevnc-dba5e098767b71bb017fa191cc3f07dc68437655.zip |
x11vnc: -verbose, -connect_or_exit, -rfbport 0, print out SSL cert.
Diffstat (limited to 'x11vnc/pm.c')
-rw-r--r-- | x11vnc/pm.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/x11vnc/pm.c b/x11vnc/pm.c index 75e4e1e..8ee0ebd 100644 --- a/x11vnc/pm.c +++ b/x11vnc/pm.c @@ -36,7 +36,9 @@ static void check_fbpm(void) { " VNC clients are connected.\n"); } } else { - rfbLog("X display is not capable of FBPM.\n"); + if (! raw_fb_str) { + rfbLog("X display is not capable of FBPM.\n"); + } fbpm_capable = 0; } init_fbpm = 1; @@ -85,7 +87,9 @@ static void check_fbpm(void) { #else RAWFB_RET_VOID if (! init_fbpm) { - rfbLog("X FBPM extension not supported.\n"); + if (! raw_fb_str) { + rfbLog("X FBPM extension not supported.\n"); + } init_fbpm = 1; } #endif |