Procházet zdrojové kódy

Remove trailing spaces in user name

It's quite easy to make a mistake and add an additional space when configuring
users in the vncserver.users config file. You will then get an error that the
user doesn't exist and it's hard to spot the mistake. Same applies for a space
before the display number.
tags/v1.10.90
Jan Grulich před 4 roky
rodič
revize
989491eb4b
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1
    1
      unix/vncserver/vncsession-start.in

+ 1
- 1
unix/vncserver/vncsession-start.in Zobrazit soubor

@@ -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

Načítá se…
Zrušit
Uložit