From 5d01b27ffce7d433b0bc4aa99fd147876ad5d6ad Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Fri, 20 Feb 2026 01:12:50 +0900 Subject: [PATCH] import: fix typo Follow-up for a9f6ba04969d6eb2e629e30299fab7538ef42a57. --- src/import/pull-oci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/import/pull-oci.c b/src/import/pull-oci.c index 3abb8777d1f..39b9c6e7682 100644 --- a/src/import/pull-oci.c +++ b/src/import/pull-oci.c @@ -1414,7 +1414,7 @@ static int oci_pull_process_authentication_challenge(OciPull *i, const char *cha _cleanup_strv_free_ char **l = NULL; r = strv_split_full(&l, e, ",", EXTRACT_KEEP_QUOTE); if (r < 0) - return log_error_errno(r, "Failed to split bearer token paramaters: %m"); + return log_error_errno(r, "Failed to split bearer token parameters: %m"); _cleanup_free_ char *realm = NULL, *scope = NULL, *service = NULL; struct { -- 2.47.3