diff options
-rw-r--r-- | unix/vncserver/vncsession-start.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/vncserver/vncsession-start.in b/unix/vncserver/vncsession-start.in index b20fcdd9..65ee0a81 100644 --- a/unix/vncserver/vncsession-start.in +++ b/unix/vncserver/vncsession-start.in @@ -33,7 +33,7 @@ fi DISPLAY="$1" -USER=`grep "^${DISPLAY}=" "${USERSFILE}" 2>/dev/null | head -1 | cut -d = -f 2-` +USER=`grep "^ *${DISPLAY}=" "${USERSFILE}" 2>/dev/null | head -1 | cut -d = -f 2- | sed 's/ *$//g'` if [ -z "${USER}" ]; then echo "No user configured for display ${DISPLAY}" >&2 |