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

Commit 27754fa6 authored by Steven Moreland's avatar Steven Moreland Committed by android-build-merger
Browse files

Merge "servicemanager: Allow '/' character in service names." into...

Merge "servicemanager: Allow '/' character in service names." into stage-aosp-master am: 053019df am: 3ce418e1 am: 934b524b
am: e13b69f2

Change-Id: I0b30212c9179608f14dd5868a5d084b1057ae70e
parents 1a69fc00 e13b69f2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -67,7 +67,7 @@ bool isValidServiceName(const std::string& name) {
    if (name.size() > 127) return false;

    for (char c : name) {
        if (c == '_' || c == '-' || c == '.') continue;
        if (c == '_' || c == '-' || c == '.' || c == '/') continue;
        if (c >= 'a' && c <= 'z') continue;
        if (c >= 'A' && c <= 'Z') continue;
        if (c >= '0' && c <= '9') continue;