mirror of
https://github.com/lbonn/rofi.git
synced 2025-12-01 12:07:41 +00:00
Support _ in ssh hostname
This commit is contained in:
@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user