Commit 977c0498 authored by topjohnwu's avatar topjohnwu

Change flags

parent aefbc1c9
......@@ -69,8 +69,8 @@ static int get_owner_login_user_args(struct su_context *ctx, char* user, int use
}
void app_send_result(struct su_context *ctx, policy_t policy) {
char binary_version[256];
sprintf(binary_version, "%d", VERSION_CODE);
// char binary_version[256];
// sprintf(binary_version, "%d", VERSION_CODE);
char uid[256];
sprintf(uid, "%d", ctx->from.uid);
......
......@@ -253,10 +253,10 @@ int su_daemon_main(int argc, char **argv) {
ctx.to.shell = optarg;
break;
case 'V':
printf("%d\n", VERSION_CODE);
printf("%d\n", MAGISK_VER_CODE);
exit(EXIT_SUCCESS);
case 'v':
printf("%s\n", SU_VERSION_STR);
printf("%s\n", MAGISKSU_VER_STR);
exit(EXIT_SUCCESS);
case 'u':
switch (ctx.user.multiuser_mode) {
......
......@@ -7,7 +7,7 @@
#include <limits.h>
#include <sys/types.h>
#define SU_VERSION_STR xstr(VERSION) ":MAGISKSU (topjohnwu)"
#define MAGISKSU_VER_STR xstr(MAGISK_VERSION) ":MAGISKSU (topjohnwu)"
// Property check for root access
#define ROOT_ACCESS_PROP "persist.sys.root_access"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment