MagiskSU improvements

This commit is contained in:
topjohnwu
2018-06-14 02:47:43 +08:00
parent f2064a84ed
commit cabaae8403
3 changed files with 3 additions and 3 deletions

View File

@ -63,7 +63,7 @@ static int strings_cb(void *v, int col_num, char **data, char **col_name) {
} }
if (key >= 0) { if (key >= 0) {
strcpy(dbs->s[key], value); strcpy(dbs->s[key], value);
LOGD("su_db: query %s=[%s]\n", DB_SETTING_KEYS[key], value); LOGD("su_db: query %s=[%s]\n", DB_STRING_KEYS[key], value);
} }
return 0; return 0;
} }

View File

@ -66,7 +66,7 @@ NAMESPACE_MODE_REQUESTER \
// Strings indices // Strings indices
enum { enum {
SU_REQUESTER = 0 SU_MANAGER = 0
}; };
struct db_strings { struct db_strings {