diff options
author | Lennart Poettering <lennart@poettering.net> | 2015-01-22 17:38:10 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2015-01-22 17:50:50 +0100 |
commit | aa9bd4992ff0240f6ceecb70ec364d5d9c7574f4 (patch) | |
tree | b0d4df825d240aaf11a0f36bab41dd91ffb0253e /src/import/importd.c | |
parent | ff828763c40cd138658abf9ed7a19da73c92dec1 (diff) |
import: now that the worker binary is called "systemd-pull" we can shorten the verbs
Atfer all "systemd-pull pull-tar" is unnecessarily redundant, over
"systemd-pull tar"...
Diffstat (limited to 'src/import/importd.c')
-rw-r--r-- | src/import/importd.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/import/importd.c b/src/import/importd.c index 40900ce36d..92ad801306 100644 --- a/src/import/importd.c +++ b/src/import/importd.c @@ -343,9 +343,7 @@ static int transfer_start(Transfer *t) { if (t->pid == 0) { const char *cmd[] = { "systemd-pull", - t->type == TRANSFER_TAR ? "pull-tar" : - t->type == TRANSFER_RAW ? "pull-raw" : - "pull-dkr", + transfer_type_to_string(t->type), "--verify", NULL, /* verify argument */ NULL, /* maybe --force */ |