missed one case

This commit is contained in:
Isaac Connor 2017-03-20 15:12:23 -04:00
parent 9f30ccfa75
commit f5dc896a45
1 changed files with 2 additions and 2 deletions

View File

@ -164,7 +164,7 @@ int main( int argc, const char *argv[] )
{ {
if ( !strcmp( name, "user" ) ) if ( !strcmp( name, "user" ) )
{ {
username = value; username = UriDecode( value );
} }
} }
else else
@ -180,7 +180,7 @@ 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" ) )
{ {