1
0
mirror of https://github.com/systemd/systemd.git synced 2024-10-28 03:25:31 +03:00

Merge pull request #2820 from lnykryn/test-ipcrm

test-ipcrm: fix log message
This commit is contained in:
Daniel Mack 2016-03-10 13:43:48 +01:00
commit 79c96fd204

View File

@ -28,7 +28,7 @@ int main(int argc, char *argv[]) {
r = get_user_creds(&name, &uid, NULL, NULL, NULL);
if (r < 0) {
log_error("Failed to resolve \"nobody\": %m");
log_error_errno(r, "Failed to resolve \"%s\": %m", name);
return EXIT_FAILURE;
}