mirror of
https://github.com/systemd/systemd.git
synced 2024-10-30 06:25:37 +03:00
Make comment about coordinating offline and online installation symmetric
https://github.com/systemd/systemd/pull/24728#issuecomment-1260966910
This commit is contained in:
parent
6762c907c4
commit
5ad58fea73
@ -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;
|
||||
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user