summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/import/importd.c4
-rw-r--r--src/import/pull.c (renamed from src/import/import.c)0
2 files changed, 2 insertions, 2 deletions
diff --git a/src/import/importd.c b/src/import/importd.c
index a3545cd576..40900ce36d 100644
--- a/src/import/importd.c
+++ b/src/import/importd.c
@@ -342,7 +342,7 @@ static int transfer_start(Transfer *t) {
return -errno;
if (t->pid == 0) {
const char *cmd[] = {
- "systemd-import",
+ "systemd-pull",
t->type == TRANSFER_TAR ? "pull-tar" :
t->type == TRANSFER_RAW ? "pull-raw" :
"pull-dkr",
@@ -413,7 +413,7 @@ static int transfer_start(Transfer *t) {
cmd[k++] = t->local;
cmd[k] = NULL;
- execv(SYSTEMD_IMPORT_PATH, (char * const *) cmd);
+ execv(SYSTEMD_PULL_PATH, (char * const *) cmd);
log_error_errno(errno, "Failed to execute import tool: %m");
_exit(EXIT_FAILURE);
}
diff --git a/src/import/import.c b/src/import/pull.c
index 9bd8b77477..9bd8b77477 100644
--- a/src/import/import.c
+++ b/src/import/pull.c