From: Mike Yuan Date: Sun, 9 Feb 2025 14:38:05 +0000 (+0100) Subject: tmpfiles: fix copypasta in create_symlink() (FIFO -> symlink) X-Git-Tag: v258-rc1~1372^2~2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6f91e7a3bea2c5046354b31cb650b54e3b2884d5;p=thirdparty%2Fsystemd.git tmpfiles: fix copypasta in create_symlink() (FIFO -> symlink) --- 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);