Skip to content

Commit

Permalink
[dbusaccess] Silenced annoying runtime warnings. JB#47982
Browse files Browse the repository at this point in the history
  • Loading branch information
monich committed Jul 8, 2020
1 parent 6ff008b commit 33456bb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/dbusaccess_policy1.y
@@ -1,6 +1,6 @@
/*
* Copyright (C) 2017-2019 Jolla Ltd.
* Copyright (C) 2017-2019 Slava Monich <slava.monich@jolla.com>
* Copyright (C) 2017-2020 Jolla Ltd.
* Copyright (C) 2017-2020 Slava Monich <slava.monich@jolla.com>
*
* You may use this file under the terms of BSD license as follows:
*
Expand Down Expand Up @@ -155,7 +155,7 @@ user:
{
$$ = da_system_uid($1);
if ($$ < 0) {
GWARN("Unknown user \"%s\"", $1);
GDEBUG("Unknown user \"%s\"", $1);
$$ = DA_INVALID;
}
}
Expand All @@ -173,7 +173,7 @@ group:
{
$$ = da_system_gid($1);
if ($$ < 0) {
GWARN("Unknown group \"%s\"", $1);
GDEBUG("Unknown group \"%s\"", $1);
$$ = DA_INVALID;
}
}
Expand Down

0 comments on commit 33456bb

Please sign in to comment.