From: Lennart Poettering Date: Wed, 29 Apr 2015 19:40:54 +0000 (+0200) Subject: sd-bus: properly handle creds that are known but undefined for a process X-Git-Tag: v226.4~1^2~415 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=011da473952eb8c7be67e8238f381fc87d50eb58;hp=011da473952eb8c7be67e8238f381fc87d50eb58;p=elogind.git sd-bus: properly handle creds that are known but undefined for a process A number of fields do not apply to all processes, including: there a processes without a controlling tty, without parent process, without service, user services or session. To distuingish these cases from the case where we simply don't have the data, always return ENXIO for them, while returning ENODATA for the case where we really lack the information. Also update the credentials dumping code to show this properly. Fields that are known but do not apply are now shown as "n/a". Note that this also changes some of the calls in process-util.c and cgroup-util.c to return ENXIO for these cases. ---