25.07.2011, 04:37
if(strcmp(inputtext, dini_Get(file, "Password"), true))
to
if(!strcmp(inputtext, dini_Get(file, "Password"), true))
strcmp returns 0 if the string matches.
to
if(!strcmp(inputtext, dini_Get(file, "Password"), true))
strcmp returns 0 if the string matches.