Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 77381ac1 authored by Yabin Cui's avatar Yabin Cui Committed by Android Git Automerger
Browse files

am da98fbc3: am 1521303f: Merge "kill OS_CASE_SENSITIVE"

* commit 'da98fbc3':
  kill OS_CASE_SENSITIVE
parents 35ed2f4c da98fbc3
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -228,7 +228,8 @@ check_filename(const char* filename, const char* package, buffer_type* name)
        }
#endif

#ifdef OS_CASE_SENSITIVE
        // aidl assumes case-insensitivity on Mac Os and Windows.
#if defined(__linux__)
        valid = (expected == p);
#else
        valid = !strcasecmp(expected.c_str(), p);