Merge pull request #1872 from connortechnology/fix_zms_auth

fix uridecode(password) to uridecode(value)
This commit is contained in:
Andrew Bauer 2017-05-05 09:09:57 -05:00 committed by GitHub
commit 0fff85c106
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 );
}
}
}