From 8eb18f6cd8793ea55f04d3c736885b04c41aba4f Mon Sep 17 00:00:00 2001 From: runge Date: Fri, 25 Nov 2005 07:22:43 +0000 Subject: fix deadlock from rfbReleaseExtensionIterator(), fix no libz/libjpeg builds, disable tightvnc-filetransfer if no libpthread, add --without-pthread option, rm // comments, set NAME_MAX if not defined, x11vnc: throttle load if fb update requests not taking place. --- x11vnc/misc/x11vnc_pw | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100755 x11vnc/misc/x11vnc_pw (limited to 'x11vnc/misc') diff --git a/x11vnc/misc/x11vnc_pw b/x11vnc/misc/x11vnc_pw new file mode 100755 index 0000000..04ea1e3 --- /dev/null +++ b/x11vnc/misc/x11vnc_pw @@ -0,0 +1,24 @@ +#!/bin/sh +# usage: x11vnc_pw [file] (default: ~/.vnc/passwd) + +if [ "X$1" = "X" ]; then + file=$HOME/.vnc/passwd +else + file=$1 +fi + +stty -echo +printf "Password: " +read pw1; echo "" +printf "Verify: " +read pw2; echo "" +stty echo + +if [ "X$pw1" != "X$pw2" ]; then + echo "passwords do not match." + exit 1 +fi + +x11vnc -help > /dev/null 2>&1 +x11vnc -storepasswd "$pw1" "$file" +ls -l "$file" -- cgit v1.2.1