From: Yu Watanabe Date: Mon, 5 Jan 2026 23:43:02 +0000 (+0900) Subject: import: update comment: implementor -> implementer X-Git-Tag: v260-rc1~430 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=776c3d7f90897c71a44cd992f850a430ecc686b9;p=thirdparty%2Fsystemd.git import: update comment: implementor -> implementer Both implementor and implementer are correct, but we use implementer at other places. --- diff --git a/src/import/pull-job.c b/src/import/pull-job.c index 621a90a86e3..e495b56eab2 100644 --- a/src/import/pull-job.c +++ b/src/import/pull-job.c @@ -156,7 +156,7 @@ void pull_job_curl_on_finished(CurlGlue *g, CURL *curl, CURLcode result) { if (strcaseeq(scheme, "FILE") && result == CURLE_FILE_COULDNT_READ_FILE && j->on_not_found) { _cleanup_free_ char *new_url = NULL; - /* This resource wasn't found, but the implementor wants to maybe let us know a new URL, query for it. */ + /* This resource wasn't found, but the implementer wants to maybe let us know a new URL, query for it. */ r = j->on_not_found(j, &new_url); if (r < 0) goto finish; @@ -197,7 +197,7 @@ void pull_job_curl_on_finished(CurlGlue *g, CURL *curl, CURLcode result) { if (status == 404 && j->on_not_found) { _cleanup_free_ char *new_url = NULL; - /* This resource wasn't found, but the implementor wants to maybe let us know a new URL, query for it. */ + /* This resource wasn't found, but the implementer wants to maybe let us know a new URL, query for it. */ r = j->on_not_found(j, &new_url); if (r < 0) goto finish;