summaryrefslogtreecommitdiff
path: root/editors/joe2/files/patch-ufile.c
diff options
context:
space:
mode:
Diffstat (limited to 'editors/joe2/files/patch-ufile.c')
-rw-r--r--editors/joe2/files/patch-ufile.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/editors/joe2/files/patch-ufile.c b/editors/joe2/files/patch-ufile.c
deleted file mode 100644
index fcea6cc24d15..000000000000
--- a/editors/joe2/files/patch-ufile.c
+++ /dev/null
@@ -1,11 +0,0 @@
---- 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);