diff options
author | runge <runge> | 2006-03-12 05:50:01 +0000 |
---|---|---|
committer | runge <runge> | 2006-03-12 05:50:01 +0000 |
commit | e2e9347946bbaf1bf87c571d4a1fd9115fe90954 (patch) | |
tree | e58c0b2d9dcddf0a8d2f90930119945020cb1f5c /x11vnc/cleanup.c | |
parent | 5e72609631a1893acfe6a31d0129553ed3044a20 (diff) | |
download | libtdevnc-e2e9347946bbaf1bf87c571d4a1fd9115fe90954.tar.gz libtdevnc-e2e9347946bbaf1bf87c571d4a1fd9115fe90954.zip |
x11vnc: add -ssl mode using libssl. Include Xdummy in misc.
Diffstat (limited to 'x11vnc/cleanup.c')
-rw-r--r-- | x11vnc/cleanup.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/x11vnc/cleanup.c b/x11vnc/cleanup.c index 8f7160c..d99ccfb 100644 --- a/x11vnc/cleanup.c +++ b/x11vnc/cleanup.c @@ -10,6 +10,7 @@ #include "solid.h" #include "unixpw.h" #include "sslcmds.h" +#include "sslhelper.h" /* * Exiting and error handling routines @@ -133,6 +134,9 @@ void clean_up_exit (int ret) { solid_bg(1); } stop_stunnel(); + if (use_openssl) { + ssh_helper_pid(0, 0); /* killall */ + } X_LOCK; XTestDiscard_wr(dpy); |