chiark / gitweb /
journal: pass the *pid* to sd_pid_get_owner_uid()
[elogind.git] / src / journal / journald-server.c
index ac565c7ece96ce1b1bbf57962c9fe04467ddea1e..364ab0f113f615bfc137a4723947ca67d710123c 100644 (file)
@@ -593,7 +593,7 @@ static void dispatch_message_real(
                                 IOVEC_SET_STRING(iovec[n++], session);
                 }
 
-                if (sd_pid_get_owner_uid(ucred->uid, &owner) >= 0) {
+                if (sd_pid_get_owner_uid(ucred->pid, &owner) >= 0) {
                         owner_valid = true;
                         if (asprintf(&owner_uid, "_SYSTEMD_OWNER_UID=%lu", (unsigned long) owner) >= 0)
                                 IOVEC_SET_STRING(iovec[n++], owner_uid);