fix uridecode(password) to uridecode(value)

This commit is contained in:
Isaac Connor 2017-05-05 09:47:15 -04:00
parent 7b81f0464b
commit 8251e7ac03
1 changed files with 2 additions and 2 deletions

View File

@ -180,11 +180,11 @@ int main( int argc, const char *argv[] )
{
if ( !strcmp( name, "user" ) )
{
username = UriDecode(value);
username = UriDecode( value );
}
if ( !strcmp( name, "pass" ) )
{
password = UriDecode( password );
password = UriDecode( value );
}
}
}