diff options
author | trevor <trevor@FreeBSD.org> | 2000-12-03 18:03:25 +0000 |
---|---|---|
committer | trevor <trevor@FreeBSD.org> | 2000-12-03 18:03:25 +0000 |
commit | e1b41e540cba7877047bfa1c27f52862a8a0c3c3 (patch) | |
tree | b8072fc318df14471c3f591bfede850f807adf02 /editors/joe2/files | |
parent | 6e4b874cadfef8a5fb4b4e741f0493ccf3f0b733 (diff) | |
download | FreeBSD-ports-e1b41e540cba7877047bfa1c27f52862a8a0c3c3.zip FreeBSD-ports-e1b41e540cba7877047bfa1c27f52862a8a0c3c3.tar.gz |
- when DEADJOE is a hard link, leave it alone
- un-forbid
- bump PORTREVISION
Submitted by: maintainer
Diffstat (limited to 'editors/joe2/files')
-rw-r--r-- | editors/joe2/files/patch-ad | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/editors/joe2/files/patch-ad b/editors/joe2/files/patch-ad index 47b1bb2..38113e6 100644 --- a/editors/joe2/files/patch-ad +++ b/editors/joe2/files/patch-ad @@ -1,5 +1,5 @@ ---- b.c.orig Fri Jan 20 13:38:25 1995 -+++ b.c Fri Nov 24 00:24:52 2000 +--- b.c.orig Fri Jan 20 00:38:25 1995 ++++ b.c Sun Dec 3 09:58:21 2000 @@ -21,6 +21,9 @@ #include <pwd.h> #endif @@ -83,7 +83,7 @@ - FILE *f=fopen("DEADJOE","a"); + FILE *f; + struct stat sb; -+ if ((lstat("DEADJOE", &sb) == 0) && (sb.st_mode & S_IFLNK) && (sb.st_uid != getuid())) ++ if ((lstat("DEADJOE", &sb) == 0) && (((sb.st_mode & S_IFLNK) && (sb.st_uid != getuid())) || (sb.st_nlink > 1))) + { + printf("*** JOE was aborted "); + if (sig) printf("by signal %d, cannot save DEADJOE due to unsafe symlink\n",sig); |