summaryrefslogtreecommitdiff
path: root/lang/rexx-regutil/files/patch-regini.c
diff options
context:
space:
mode:
authorKurt Jaeger <pi@FreeBSD.org>2016-05-08 17:50:04 +0000
committerKurt Jaeger <pi@FreeBSD.org>2016-05-08 17:50:04 +0000
commit8489b4ac928e67c965c6f3113ec60870033751d5 (patch)
tree0428f7b1c0494fa6753c9516c8f3b5d7be57757c /lang/rexx-regutil/files/patch-regini.c
parent- Update to 1.2.2. (diff)
lang/rexx-regutil: several patches
- additional MASTER_SITE (there was only one) - tidied Makefile considerably - fixed failure to build under different PREFIX - added DOC option - added EXAMPLES option, and now can have examples (there were none before) - eliminated numerous compilation warnings - REMOVED pkg-plist (only two files in it) - REMOVED pkg-message (now redundant) - ADDED new patches in files/ PR: 209379 Submitted by: bob@eager.cx (maintainer)
Diffstat (limited to 'lang/rexx-regutil/files/patch-regini.c')
-rw-r--r--lang/rexx-regutil/files/patch-regini.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/lang/rexx-regutil/files/patch-regini.c b/lang/rexx-regutil/files/patch-regini.c
new file mode 100644
index 000000000000..ace11aedcf6a
--- /dev/null
+++ b/lang/rexx-regutil/files/patch-regini.c
@@ -0,0 +1,11 @@
+--- regini.c.orig 2004-07-19 00:09:52 UTC
++++ regini.c
+@@ -1002,7 +1002,7 @@ rxfunc(sysgeterrortext)
+ result->strlength = 0;
+ }
+ #else
+- if (rcs = strerror(rc)) {
++ if ((rcs = strerror(rc))) {
+ result->strlength = strlen(rcs);
+ memcpy(result->strptr, rcs, result->strlength);
+ }