Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
nviennot committed Nov 7, 2019
1 parent ba860b8 commit 8b62c54
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tmux.c
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ usage(void)
"Usage: %s [options] [tmux-command [flags]]\n"
"\n"
"Basic options:\n"
" -n <name> specify the session name instead of getting a random one\n"
" -r <name> same, but for the read-only session name\n"
" -n <name> specify the session token instead of getting a random one\n"
" -r <name> same, but for the read-only token\n"
" -k <key> specify the account-key, necessary for named sessions on tmate.io\n"
" -F set the foreground mode, useful for setting remote access\n"
" -f <path> set the config file path\n"
Expand Down Expand Up @@ -227,8 +227,8 @@ void tmate_load_cli_options(void)
} \
})
SET_OPT("tmate-account-key", account_key);
SET_OPT("tmate-account-name", session_name);
SET_OPT("tmate-account-name-ro", session_name_ro);
SET_OPT("tmate-session-name", session_name);
SET_OPT("tmate-session-name-ro", session_name_ro);
SET_OPT("tmate-authorized-keys", authorized_keys);
#undef SET_OPT
}
Expand Down

0 comments on commit 8b62c54

Please sign in to comment.