X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fcommon%2Futils.c;h=2a20e5a8c4ab4cca1557ca917cfa2de02defd905;hp=7006a21581ea91f952c7d7dbe57a1095d467979e;hb=9120e619240c698c899a9baea203a52c4bdfd565;hpb=dc11d4e3c15b2511cd390aa12c586f5594c80111;ds=sidebyside diff --git a/src/common/utils.c b/src/common/utils.c index 7006a2158..2a20e5a8c 100644 --- a/src/common/utils.c +++ b/src/common/utils.c @@ -1274,8 +1274,14 @@ int utils_get_group_id(const char *name, bool warn, gid_t *gid) } } if (ret) { - PERROR("Failed to get group file entry for group name \"%s\"", - name); + if (ret == ESRCH) { + DBG("Could not find group file entry for group name '%s'", + name); + } else { + PERROR("Failed to get group file entry for group name '%s'", + name); + } + ret = -1; goto error; }