https://bugzilla.novell.com/show_bug.cgi?id=864716 https://bugzilla.novell.com/show_bug.cgi?id=864716#c9 --- Comment #9 from Raymond Wooninck <tittiatcoke@gmail.com> 2014-03-25 13:12:00 UTC --- Sebastian, KAuth doesn't directly communicate with PolKit, but does this through the Qt bindings for PolKit. Therefore the bindings have to be adjusted as they perform the calls to PolKit. This is the proposed step, which should bring it up to the right level of PolKit: --- a/core/polkitqt1-subject.cpp +++ b/core/polkitqt1-subject.cpp @@ -122,13 +122,13 @@ Subject Subject::fromString(const QString &string) UnixProcessSubject::UnixProcessSubject(qint64 pid) : Subject() { - setSubject(polkit_unix_process_new(pid)); + setSubject(polkit_unix_process_new_for_owner(pid, 0, getuid ())); } UnixProcessSubject::UnixProcessSubject(qint64 pid, quint64 startTime) : Subject() { - setSubject(polkit_unix_process_new_full(pid, startTime)); + setSubject(polkit_unix_process_new_for_owner(pid, startTime, getuid ())); } UnixProcessSubject::UnixProcessSubject(PolkitUnixProcess *pkUnixProcess) However Martin Briza (from redhat and the author of the Qt bindings for polkit) is also looking at the issue at this moment. So, hopefully we get this sorted out today or latest tomorrow. As soon as Polkit-qt-1 is patched, I will create an update and submit it. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.