From 43214648f2e9d78ec77017c78f517d827ce8280f Mon Sep 17 00:00:00 2001 From: Nicolas Viennot Date: Sun, 17 Nov 2019 18:44:59 -0500 Subject: [PATCH] Forgot the letter i in the valid_digits --- tmate-ssh-client-pty.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tmate-ssh-client-pty.c b/tmate-ssh-client-pty.c index 4a7bb0e8..390f332e 100644 --- a/tmate-ssh-client-pty.c +++ b/tmate-ssh-client-pty.c @@ -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)