]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
import: update comment: implementor -> implementer
authorYu Watanabe <watanabe.yu+github@gmail.com>
Mon, 5 Jan 2026 23:43:02 +0000 (08:43 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Mon, 5 Jan 2026 23:43:05 +0000 (08:43 +0900)
Both implementor and implementer are correct, but we use implementer at
other places.

src/import/pull-job.c

index 621a90a86e308d0a7bb0bcc36e766b4a37272d29..e495b56eab299eb1b639db85bd03e0d4ac50b312 100644 (file)
@@ -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;