diff --git a/source/ssh-dialog.c b/source/ssh-dialog.c index 4c6d754e..aaa07a85 100644 --- a/source/ssh-dialog.c +++ b/source/ssh-dialog.c @@ -176,7 +176,7 @@ static char ** get_ssh ( ) for ( start=4; isspace( buffer[start] ); start++ ); - for ( stop=start; isalnum( buffer[stop] ); stop++ ); + for ( stop=start; isalnum( buffer[stop] ) || buffer[stop] == '_' ; stop++ ); int found = 0;