mirror of
https://github.com/transmission/transmission
synced 2025-02-03 21:12:05 +00:00
fix for [4439]
This commit is contained in:
parent
bbe41f4b4c
commit
69c4b99995
1 changed files with 3 additions and 3 deletions
|
@ -975,9 +975,9 @@ generateKeyParam( char * msg, int len )
|
|||
static int
|
||||
is_rfc2396_alnum( char ch )
|
||||
{
|
||||
return strchr( "abcdefghijklmnopqrstuvwxyz"
|
||||
"ABCDEFGHIJKLMNOPQRSTUVWXYZ"
|
||||
"0123456789", ch ) != NULL;
|
||||
return ( (ch >= 'a' && ch <= 'z' )
|
||||
|| (ch >= 'A' && ch <= 'Z' )
|
||||
|| (ch >= '0' && ch <= '9' ) );
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
Loading…
Reference in a new issue