From 6f91e7a3bea2c5046354b31cb650b54e3b2884d5 Mon Sep 17 00:00:00 2001 From: Mike Yuan Date: Sun, 9 Feb 2025 15:38:05 +0100 Subject: [PATCH] tmpfiles: fix copypasta in create_symlink() (FIFO -> symlink) --- src/tmpfiles/tmpfiles.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tmpfiles/tmpfiles.c b/src/tmpfiles/tmpfiles.c index 6ce4a78adc1..a7d54bb1ff6 100644 --- a/src/tmpfiles/tmpfiles.c +++ b/src/tmpfiles/tmpfiles.c @@ -2423,7 +2423,7 @@ static int create_symlink(Context *c, Item *i) { return log_error_errno(r, "Failed to extract filename from path '%s': %m", i->path); if (r == O_DIRECTORY) return log_error_errno(SYNTHETIC_ERRNO(EISDIR), - "Cannot open path '%s' for creating FIFO, is a directory.", i->path); + "Cannot open path '%s' for creating symlink, is a directory.", i->path); if (arg_dry_run) { log_info("Would create symlink %s -> %s", i->path, i->argument); -- 2.47.3