summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-core/dbus-cxx/files/fix_build_musl.patch
blob: e55d987e43a5a61b4ea56d37def305ebeb5b4130 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
diff --git a/dbus-cxx/sasl.cpp b/dbus-cxx/sasl.cpp
index e8a6060..7a76af6 100644
--- a/dbus-cxx/sasl.cpp
+++ b/dbus-cxx/sasl.cpp
@@ -70,7 +70,7 @@ std::tuple<bool, bool, std::vector<uint8_t>> SASL::authenticate() {
     bool success = false;
     bool negotiatedFD = false;
     std::vector<uint8_t> serverGUID;
-    __uid_t uid = getuid();
+    uid_t uid = getuid();
     std::string line;
     std::smatch regex_match;