diff options
author | gj <gj@FreeBSD.org> | 2002-08-27 17:18:36 +0800 |
---|---|---|
committer | gj <gj@FreeBSD.org> | 2002-08-27 17:18:36 +0800 |
commit | bad38c8c34490b402ca24c53bd2990aa9e7289b9 (patch) | |
tree | 65ddc374d56c8264997d2491457cb5704a240d76 /editors/vile | |
parent | 6bb9078e8132724853c3d57183a2b25532b4afe6 (diff) | |
download | freebsd-ports-graphics-bad38c8c34490b402ca24c53bd2990aa9e7289b9.tar.gz freebsd-ports-graphics-bad38c8c34490b402ca24c53bd2990aa9e7289b9.tar.zst freebsd-ports-graphics-bad38c8c34490b402ca24c53bd2990aa9e7289b9.zip |
Add patch-file.c to fix an error in checking the return value from
mkdtemp.
Bump PORTREVISION to reflect the fix.
Diffstat (limited to 'editors/vile')
-rw-r--r-- | editors/vile/Makefile | 1 | ||||
-rw-r--r-- | editors/vile/files/patch-file.c | 11 |
2 files changed, 12 insertions, 0 deletions
diff --git a/editors/vile/Makefile b/editors/vile/Makefile index f9478ff2ac0..176fa87e7af 100644 --- a/editors/vile/Makefile +++ b/editors/vile/Makefile @@ -7,6 +7,7 @@ PORTNAME= vile PORTVERSION= 9.3c +PORTREVISION= 1 CATEGORIES= editors MASTER_SITES= ftp://ftp.phred.org/pub/vile/ \ ftp://dickey.his.com/vile/ diff --git a/editors/vile/files/patch-file.c b/editors/vile/files/patch-file.c new file mode 100644 index 00000000000..ba624d2b613 --- /dev/null +++ b/editors/vile/files/patch-file.c @@ -0,0 +1,11 @@ +--- file.c.orig Tue Aug 27 10:14:57 2002 ++++ file.c Tue Aug 27 10:15:35 2002 +@@ -2351,7 +2351,7 @@ + + /* on failure, keep going */ + #if defined(HAVE_MKSTEMP) && defined(HAVE_MKDTEMP) +- result = (vl_mkdtemp(dirnam) == 0); ++ result = (vl_mkdtemp(dirnam) != 0); + #else + result = (vl_mkdir(dirnam, 0700) == 0); + #endif |