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/cursor.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/cursor.c')
-rw-r--r-- | x11vnc/cursor.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/x11vnc/cursor.c b/x11vnc/cursor.c index 761e036..53ef4e7 100644 --- a/x11vnc/cursor.c +++ b/x11vnc/cursor.c @@ -554,7 +554,9 @@ static void setup_cursors(void) { int i, j, n = 0; static int first = 1; - rfbLog("setting up %d cursors...\n", CURS_MAX); + if (verbose) { + rfbLog("setting up %d cursors...\n", CURS_MAX); + } if (first) { for (i=0; i<CURS_MAX; i++) { @@ -814,7 +816,9 @@ static void setup_cursors(void) { if (screen) { UNLOCK(screen->cursorMutex); } - rfbLog(" done.\n"); + if (verbose) { + rfbLog(" done.\n"); + } rfbLog("\n"); } |