[Rpm-maint] [rpm-software-management/rpm] Add dbus-announce plugin (#1255)
Panu Matilainen
notifications at github.com
Wed Jun 10 09:57:49 UTC 2020
@pmatilai commented on this pull request.
> +
+ /* ...don't log test transactions */
+ if (rpmtsFlags(ts) & (RPMTRANS_FLAG_TEST|RPMTRANS_FLAG_BUILD_PROBS))
+ state->logging = 0;
+
+ /* ...don't log chroot transactions */
+ if (!rstreq(rpmtsRootDir(ts), "/"))
+ state->logging = 0;
+
+ /* Don't open */
+ if (!state->logging || state->bus)
+ return RPMRC_OK;
+
+ if (lstat("/run/systemd/system/", &st) == 0) {
+ if (S_ISDIR(st.st_mode)) {
+ // initialise the error value
Please use `/* ... */` for comments, // is not in the rpm coding style even if the compiler permits it.
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/rpm-software-management/rpm/pull/1255#pullrequestreview-427900196
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.rpm.org/pipermail/rpm-maint/attachments/20200610/be5cb719/attachment.html>
More information about the Rpm-maint
mailing list