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

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