From 082ee80d3524fa3474644c09b441d7f7947675cc Mon Sep 17 00:00:00 2001 From: Gary Bisson Date: Sun, 1 Dec 2024 15:43:56 +0100 Subject: [PATCH] Fix build issue with uclibc Signed-off-by: Gary Bisson --- core/adb/adb_auth_client.c | 2 +- core/adbd/adb_auth_client.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/adb/adb_auth_client.c b/core/adb/adb_auth_client.c index 0b4913e..068d837 100644 --- a/core/adb/adb_auth_client.c +++ b/core/adb/adb_auth_client.c @@ -72,7 +72,7 @@ static void read_keys(const char *file, struct listnode *list) if (sep) *sep = '\0'; - ret = __b64_pton(buf, (u_char *)&key->key, sizeof(key->key) + 4); + ret = b64_pton(buf, (u_char *)&key->key, sizeof(key->key) + 4); if (ret != sizeof(key->key)) { D("%s: Invalid base64 data ret=%d\n", file, ret); free(key); diff --git a/core/adbd/adb_auth_client.c b/core/adbd/adb_auth_client.c index 0b4913e..068d837 100644 --- a/core/adbd/adb_auth_client.c +++ b/core/adbd/adb_auth_client.c @@ -72,7 +72,7 @@ static void read_keys(const char *file, struct listnode *list) if (sep) *sep = '\0'; - ret = __b64_pton(buf, (u_char *)&key->key, sizeof(key->key) + 4); + ret = b64_pton(buf, (u_char *)&key->key, sizeof(key->key) + 4); if (ret != sizeof(key->key)) { D("%s: Invalid base64 data ret=%d\n", file, ret); free(key); -- 2.47.0