1
0
mirror of https://github.com/systemd/systemd.git synced 2025-03-31 14:50:15 +03:00

Merge pull request #2753 from phomes/trivial-fixes2

Trivial fixes
This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2016-02-28 19:12:31 -05:00
commit 0493ccd9ed
3 changed files with 3 additions and 5 deletions

View File

@ -1876,7 +1876,7 @@ static int exec_child(
* also to the context secure_bits so that we don't try to
* drop the bit away next. */
secure_bits |= 1<<SECURE_KEEP_CAPS;
secure_bits |= 1<<SECURE_KEEP_CAPS;
}
}

View File

@ -261,7 +261,7 @@ static int write_netlabel_rules(const char* srcdir) {
}
}
return r;
return r;
}
#endif

View File

@ -190,7 +190,7 @@ int main(int argc, char *argv[]) {
}
for (;;) {
_cleanup_(sd_bus_message_unrefp)sd_bus_message *m = NULL;
_cleanup_(sd_bus_message_unrefp)sd_bus_message *m = NULL;
int events_a, events_b, fd;
uint64_t timeout_a, timeout_b, t;
struct timespec _ts, *ts;
@ -294,8 +294,6 @@ int main(int argc, char *argv[]) {
}
}
r = 0;
finish:
return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS;
}