summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiroslav Lichvar <mlichvar@fedoraproject.org>2006-01-11 12:04:00 +0000
committerMiroslav Lichvar <mlichvar@fedoraproject.org>2006-01-11 12:04:00 +0000
commitf3dcd364eb97024929d16ab860e531b771c5d637 (patch)
tree26aa5dcd35f7d6f14d7990f1a820e6c1da657503
parent8f13243823a77b0dcb16e285b40c2f180312a7d6 (diff)
downloadgroff-f3dcd364eb97024929d16ab860e531b771c5d637.tar.gz
groff-f3dcd364eb97024929d16ab860e531b771c5d637.tar.xz
groff-f3dcd364eb97024929d16ab860e531b771c5d637.zip
fix assertion failure in abort message (#141912)
-rw-r--r--groff-1.18.1-gzext.patch2
1 files changed, 1 insertions, 1 deletions
diff --git a/groff-1.18.1-gzext.patch b/groff-1.18.1-gzext.patch
index d9ea585..c26f3d1 100644
--- a/groff-1.18.1-gzext.patch
+++ b/groff-1.18.1-gzext.patch
@@ -15,7 +15,7 @@
+ else if ((path = realpath(nm.contents(), pbuf)) == NULL &&
+ (path = realpath(tmp, pbuf)) == NULL)
+ {
-+ error("realpath on `%1' failed: %3", nm.contents(), strerror(errno));
++ error("realpath on `%1' failed: %2", nm.contents(), strerror(errno));
+ } else if (safer_flag && strncmp(cwd, path, strlen(cwd)))
error("won't source `%1' outside of `%2' without -U flag", path, cwd);
else if (stat(path, &st) < 0)