1
0
Fork 0

add error message

This commit is contained in:
jsteemann 2018-08-27 22:20:34 +02:00
parent 5022ccc24d
commit 1aa162d6d6
1 changed files with 2 additions and 1 deletions

View File

@ -101,8 +101,9 @@ void PrivilegeFeature::extractPrivileges() {
if (g != nullptr) {
gidNumber = g->gr_gid;
} else {
TRI_set_errno(TRI_ERROR_SYS_ERROR);
LOG_TOPIC(FATAL, arangodb::Logger::FIXME) << "cannot convert groupname '" << _gid
<< "' to numeric gid";
<< "' to numeric gid: " << TRI_last_error();
FATAL_ERROR_EXIT();
}
#else