diff options
| -rw-r--r-- | liblog/pmsg_reader.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/liblog/pmsg_reader.c b/liblog/pmsg_reader.c index a0a69c1894..e1b81aaf05 100644 --- a/liblog/pmsg_reader.c +++ b/liblog/pmsg_reader.c @@ -70,7 +70,7 @@ static int pmsgAvailable(log_id_t logId) /* Determine the credentials of the caller */ static bool uid_has_log_permission(uid_t uid) { - return (uid == AID_SYSTEM) || (uid == AID_LOG) || (uid == AID_ROOT); + return (uid == AID_SYSTEM) || (uid == AID_LOG) || (uid == AID_ROOT) || (uid == AID_LOGD); } static uid_t get_best_effective_uid() |
