Make comment about coordinating offline and online installation symmetric

https://github.com/systemd/systemd/pull/24728#issuecomment-1260966910
This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2022-10-20 10:32:46 +02:00
parent 6762c907c4
commit 5ad58fea73
2 changed files with 4 additions and 3 deletions

View file

@ -2133,8 +2133,6 @@ static int send_unit_files_changed(sd_bus *bus, void *userdata) {
/* Create an error reply, using the error information from changes[]
* if possible, and fall back to generating an error from error code c.
* The error message only describes the first error.
*
* Coordinate with install_changes_dump() in install.c.
*/
static int install_error(
sd_bus_error *error,
@ -2146,8 +2144,9 @@ static int install_error(
for (size_t i = 0; i < n_changes; i++)
switch (changes[i].type) {
/* When making changes here, make sure to also change install_changes_dump() in install.c. */
switch (changes[i].type) {
case 0 ... _INSTALL_CHANGE_TYPE_MAX: /* not errors */
break;

View file

@ -332,6 +332,8 @@ void install_changes_dump(int r, const char *verb, const InstallChange *changes,
for (size_t i = 0; i < n_changes; i++) {
assert(verb || changes[i].type >= 0);
/* When making changes here, make sure to also change install_error() in dbus-manager.c. */
switch (changes[i].type) {
case INSTALL_CHANGE_SYMLINK:
if (!quiet)