fix uridecode(password) to uridecode(value)
This commit is contained in:
parent
7b81f0464b
commit
8251e7ac03
|
@ -180,11 +180,11 @@ int main( int argc, const char *argv[] )
|
||||||
{
|
{
|
||||||
if ( !strcmp( name, "user" ) )
|
if ( !strcmp( name, "user" ) )
|
||||||
{
|
{
|
||||||
username = UriDecode(value);
|
username = UriDecode( value );
|
||||||
}
|
}
|
||||||
if ( !strcmp( name, "pass" ) )
|
if ( !strcmp( name, "pass" ) )
|
||||||
{
|
{
|
||||||
password = UriDecode( password );
|
password = UriDecode( value );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue