Skip to content

Commit

Permalink
Forgot the letter i in the valid_digits
Browse files Browse the repository at this point in the history
  • Loading branch information
nviennot committed Nov 17, 2019
1 parent e1a5e08 commit 4321464
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tmate-ssh-client-pty.c
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,8 @@ static void ssh_echo(struct tmate_ssh_client *ssh_client,
* Note: get_socket_path() replaces '/' and '.' by '_' to
* avoid wondering around the file system.
*/
static char valid_digits[] = "abcdefghjklmnopqrstuvwxyz"
"ABCDEFGHJKLMNOPQRSTUVWXYZ"
static char valid_digits[] = "abcdefghijklmnopqrstuvwxyz"
"ABCDEFGHIJKLMNOPQRSTUVWXYZ"
"0123456789-_/";

int tmate_validate_session_token(const char *token)
Expand Down

0 comments on commit 4321464

Please sign in to comment.