summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--editors/joe/Makefile2
-rw-r--r--editors/joe/files/patch-ufile.c11
-rw-r--r--editors/joe2/Makefile2
-rw-r--r--editors/joe2/files/patch-ufile.c11
4 files changed, 24 insertions, 2 deletions
diff --git a/editors/joe/Makefile b/editors/joe/Makefile
index 06ec3e8aa397..fc9008a66f29 100644
--- a/editors/joe/Makefile
+++ b/editors/joe/Makefile
@@ -7,7 +7,7 @@
PORTNAME= joe
PORTVERSION= 2.8
-PORTREVISION= 4
+PORTREVISION= 5
CATEGORIES+= editors
MASTER_SITES= ftp://ftp.std.com/src/editors/
DISTNAME= ${PORTNAME}${PORTVERSION}
diff --git a/editors/joe/files/patch-ufile.c b/editors/joe/files/patch-ufile.c
new file mode 100644
index 000000000000..fcea6cc24d15
--- /dev/null
+++ b/editors/joe/files/patch-ufile.c
@@ -0,0 +1,11 @@
+--- ufile.c.orig Wed Sep 18 19:09:53 2002
++++ ufile.c Wed Sep 18 19:10:19 2002
+@@ -149,7 +149,7 @@
+ f=open(from,O_RDONLY);
+ if(f<0) return -1;
+ if(fstat(f,&sbuf)<0) return -1;
+- g=creat(to,sbuf.st_mode);
++ g=creat(to,sbuf.st_mode&~(S_ISGID|S_ISUID));
+ if(g<0)
+ {
+ close(f);
diff --git a/editors/joe2/Makefile b/editors/joe2/Makefile
index 06ec3e8aa397..fc9008a66f29 100644
--- a/editors/joe2/Makefile
+++ b/editors/joe2/Makefile
@@ -7,7 +7,7 @@
PORTNAME= joe
PORTVERSION= 2.8
-PORTREVISION= 4
+PORTREVISION= 5
CATEGORIES+= editors
MASTER_SITES= ftp://ftp.std.com/src/editors/
DISTNAME= ${PORTNAME}${PORTVERSION}
diff --git a/editors/joe2/files/patch-ufile.c b/editors/joe2/files/patch-ufile.c
new file mode 100644
index 000000000000..fcea6cc24d15
--- /dev/null
+++ b/editors/joe2/files/patch-ufile.c
@@ -0,0 +1,11 @@
+--- ufile.c.orig Wed Sep 18 19:09:53 2002
++++ ufile.c Wed Sep 18 19:10:19 2002
+@@ -149,7 +149,7 @@
+ f=open(from,O_RDONLY);
+ if(f<0) return -1;
+ if(fstat(f,&sbuf)<0) return -1;
+- g=creat(to,sbuf.st_mode);
++ g=creat(to,sbuf.st_mode&~(S_ISGID|S_ISUID));
+ if(g<0)
+ {
+ close(f);