Bug Description: Unused variable len (opps!) Fix Description: Remove the unused variable. https://bugzilla.redhat.com/show_bug.cgi?id=1358565 Author: wibrown Review by: One line fix
@@ -26,7 +26,6 @@ int
clear_pw_cmp( const char *userpwd, const char *dbpwd )
{
int result = 0;
- int len = 0;
int len_user = strlen(userpwd);
int len_dbp = strlen(dbpwd);
if ( len_user != len_dbp ) {