missed one case
This commit is contained in:
parent
9f30ccfa75
commit
f5dc896a45
|
@ -164,7 +164,7 @@ int main( int argc, const char *argv[] )
|
|||
{
|
||||
if ( !strcmp( name, "user" ) )
|
||||
{
|
||||
username = value;
|
||||
username = UriDecode( value );
|
||||
}
|
||||
}
|
||||
else
|
||||
|
@ -180,7 +180,7 @@ int main( int argc, const char *argv[] )
|
|||
{
|
||||
if ( !strcmp( name, "user" ) )
|
||||
{
|
||||
username = UriDecode(value);
|
||||
username = UriDecode( value );
|
||||
}
|
||||
if ( !strcmp( name, "pass" ) )
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue