From f3dcd364eb97024929d16ab860e531b771c5d637 Mon Sep 17 00:00:00 2001 From: Miroslav Lichvar Date: Wed, 11 Jan 2006 12:04:00 +0000 Subject: fix assertion failure in abort message (#141912) --- groff-1.18.1-gzext.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- cgit