Radish alpha
H
rad:z3QDZAW2FAfuLvihrhiyDC9fAD8G9
HardenedBSD Package Manager
Radicle
Git
pkg_create.c: minor error message fix
John Hood committed 5 years ago
commit bbaab29b107d06edbdefa63fbf5c3111e8834893
parent 5119a30
1 file changed +1 -1
modified libpkg/pkg_create.c
@@ -95,7 +95,7 @@ pkg_create_from_dir(struct pkg *pkg, const char *root,
		}

		if (!(S_ISREG(st.st_mode) || S_ISLNK(st.st_mode))) {
-
			pkg_emit_error("file '%s' is not a regular file", fpath);
+
			pkg_emit_error("file '%s' is not a regular file or symlink", fpath);
			kh_destroy_hardlinks(hardlinks);
			return (EPKG_FATAL);
		}