diff options
author | runge <runge@karlrunge.com> | 2009-12-28 11:21:50 -0500 |
---|---|---|
committer | runge <runge@karlrunge.com> | 2009-12-28 11:21:50 -0500 |
commit | 5764cd3fdd669096a84c7e40a2893cd45df090e4 (patch) | |
tree | e82be24266b1691941182f0bedecf41cac83cfb4 /x11vnc/remote.c | |
parent | 018f152bc5c99503d1f59b073046b2f5dca9b042 (diff) | |
download | libvncserver-5764cd3fdd669096a84c7e40a2893cd45df090e4.zip libvncserver-5764cd3fdd669096a84c7e40a2893cd45df090e4.tar.gz |
x11vnc: Fix problems in --without-x builds. Fix crash
with -QD query for dbus info. Adjust window size for
small screens in -gui. Improve F1 help for xdm, etc.
include ssvnc 1.0.25 source.
Diffstat (limited to 'x11vnc/remote.c')
-rw-r--r-- | x11vnc/remote.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/x11vnc/remote.c b/x11vnc/remote.c index bb6491a..d3ff58a 100644 --- a/x11vnc/remote.c +++ b/x11vnc/remote.c @@ -5920,7 +5920,9 @@ char *process_remote_cmd(char *cmd, int stringonly) { grab_state(&ptr_grabbed, &kbd_grabbed); snprintf(buf, bufn, "aro=%s:%d,%d", p, ptr_grabbed, kbd_grabbed); - rfbLog("remote_cmd: ptr,kbd: %s\n", buf); + if (dpy) { + rfbLog("remote_cmd: ptr,kbd: %s\n", buf); + } goto qry; } |