From 977c049875dc7a59fd7b23ef378fac6df0c84e42 Mon Sep 17 00:00:00 2001 From: topjohnwu Date: Tue, 18 Apr 2017 21:09:53 +0800 Subject: [PATCH] Change flags --- activity.c | 4 ++-- su.c | 4 ++-- su.h | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/activity.c b/activity.c index 97f9e2636..45c337993 100644 --- a/activity.c +++ b/activity.c @@ -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); diff --git a/su.c b/su.c index 29a400b3d..324f106b6 100644 --- a/su.c +++ b/su.c @@ -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) { diff --git a/su.h b/su.h index 190aaccd3..16b03b46d 100644 --- a/su.h +++ b/su.h @@ -7,7 +7,7 @@ #include #include -#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"