]> rtime.felk.cvut.cz Git - novaboot.git/commitdiff
server: Fix typo in a comment
authorMichal Sojka <sojkam1@fel.cvut.cz>
Fri, 6 Oct 2017 17:45:56 +0000 (19:45 +0200)
committerMichal Sojka <sojkam1@fel.cvut.cz>
Fri, 6 Oct 2017 17:45:56 +0000 (19:45 +0200)
server/novaboot-shell

index c714b380e2b08c787904d18abe6544501e84ebd2..bf1d4ba1a3ee789055f1b449950212b3a0f19d30 100755 (executable)
@@ -155,7 +155,7 @@ main() {
        # Commands allowed only when nobody or the same user is connected
        # to the console. "The same user" means that we were executed by
        # the same sshd process that has the lock. This is ensured by
-       # using SSH connection sharing on cline side.
+       # using SSH connection sharing on client side.
        reset | rsync | on | off)
            ALLOWED_PPID=$(cat $RUN_DIR/ppid 2>/dev/null || :)
            if [ "$PPID" -eq "${ALLOWED_PPID:-0}" ]; then run=unlocked; else run=locked; fi