mirror of
https://github.com/systemd/systemd.git
synced 2024-12-12 03:33:44 +08:00
machine-id-commit: simplifications
This commit is contained in:
parent
f85ef957e6
commit
d9dde2bb03
@ -28,7 +28,7 @@
|
||||
#include "log.h"
|
||||
#include "build.h"
|
||||
|
||||
static const char *arg_root = "";
|
||||
static const char *arg_root = NULL;
|
||||
|
||||
static void help(void) {
|
||||
printf("%s [OPTIONS...]\n\n"
|
||||
@ -98,7 +98,10 @@ int main(int argc, char *argv[]) {
|
||||
|
||||
r = parse_argv(argc, argv);
|
||||
if (r <= 0)
|
||||
return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS;
|
||||
goto finish;
|
||||
|
||||
return machine_id_commit(arg_root) < 0 ? EXIT_FAILURE : EXIT_SUCCESS;
|
||||
r = machine_id_commit(arg_root);
|
||||
|
||||
finish:
|
||||
return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user