summaryrefslogtreecommitdiff
path: root/textproc/ispell/files/patch-sec1
diff options
context:
space:
mode:
Diffstat (limited to 'textproc/ispell/files/patch-sec1')
-rw-r--r--textproc/ispell/files/patch-sec140
1 files changed, 0 insertions, 40 deletions
diff --git a/textproc/ispell/files/patch-sec1 b/textproc/ispell/files/patch-sec1
deleted file mode 100644
index 24632fe5221c..000000000000
--- a/textproc/ispell/files/patch-sec1
+++ /dev/null
@@ -1,40 +0,0 @@
---- ispell.c-orig Thu May 24 14:52:00 2001
-+++ ispell.c Thu May 24 15:00:06 2001
-@@ -802,6 +802,7 @@
- {
- struct stat statbuf;
- char * cp;
-+ int fd;
-
- currentfile = filename;
-
-@@ -835,15 +836,20 @@
-
- (void) fstat (fileno (infile), &statbuf);
- (void) strcpy (tempfile, TEMPNAME);
-- if (mktemp (tempfile) == NULL || tempfile[0] == '\0'
-- || (outfile = fopen (tempfile, "w")) == NULL)
-- {
-- (void) fprintf (stderr, CANT_CREATE,
-- (tempfile == NULL || tempfile[0] == '\0')
-- ? "temporary file" : tempfile);
-- (void) sleep ((unsigned) 2);
-- return;
-- }
-+
-+ if ((fd = mkstemp(tempfile)) == -1) {
-+ fprintf(stderr, "Error: Can't create (mkstemp) temporary file\n");
-+ sleep(2);
-+ return;
-+ }
-+ if ((outfile = fdopen(fd, "w")) == NULL) {
-+ unlink(tempfile);
-+ close(fd);
-+ fprintf(stderr, "Error: Can't open (fdopen) temporary file\n");
-+ sleep(2);
-+ return;
-+ }
-+ /* Is this necessary ? */
- (void) chmod (tempfile, statbuf.st_mode);
-
- quit = 0;