Compiling passdb/pdb_interface.c cc-1515 cc: WARNING File = passdb/pdb_interface.c, Line = 63 A value of type "const unsigned char *" cannot be assigned to an entity of type "const char *". lm_pwd = pdb_get_lanman_passwd(pass); ^ cc-1515 cc: WARNING File = passdb/pdb_interface.c, Line = 69 A value of type "const unsigned char *" cannot be assigned to an entity of type "const char *". nt_pwd = pdb_get_nt_passwd(pass); ^ cc-1515 cc: WARNING File = passdb/pdb_interface.c, Line = 247 A value of type "const unsigned char *" cannot be assigned to an entity of type "const char *". lm_pw = pdb_get_lanman_passwd( sam_acct ); ^ cc-1515 cc: WARNING File = passdb/pdb_interface.c, Line = 248 A value of type "const unsigned char *" cannot be assigned to an entity of type "const char *". nt_pw = pdb_get_nt_passwd( sam_acct ); ^ cc-1515 cc: WARNING File = passdb/pdb_interface.c, Line = 281 A value of type "const unsigned char *" cannot be assigned to an entity of type "const char *". lm_pw = pdb_get_lanman_passwd( sam_acct ); ^ cc-1515 cc: WARNING File = passdb/pdb_interface.c, Line = 282 A value of type "const unsigned char *" cannot be assigned to an entity of type "const char *". nt_pw = pdb_get_nt_passwd( sam_acct ); ^
Created attachment 1050 [details] changes variables to "const unsigned char *"
fixed. variables should have been declared as const uint8* for consistency.
sorry for the same, cleaning up the database to prevent unecessary reopens of bugs.