From 9faf6e70187e2a425ae2c502b8c00dded63e6460 Mon Sep 17 00:00:00 2001 From: Jerry DeLisle Date: Sun, 27 Jan 2019 19:42:34 +0000 Subject: [PATCH] re PR libfortran/89020 (close(status='DELETE') does not remove file) 2019-01-27 Jerry DeLisle PR libfortran/89020 * io/close.c (st_close): Simplify text of error message to not presume a specific cause of failure to remove file. From-SVN: r268319 --- libgfortran/ChangeLog | 6 ++++++ libgfortran/io/close.c | 6 ++---- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog index 0898b8ba88b..f1e43311206 100644 --- a/libgfortran/ChangeLog +++ b/libgfortran/ChangeLog @@ -1,3 +1,9 @@ +2019-01-27 Jerry DeLisle + + PR libfortran/89020 + * io/close.c (st_close): Simplify text of error message to not + presume a specific cause of failure to remove file. + 2019-01-26 Jerry DeLisle PR libfortran/89020 diff --git a/libgfortran/io/close.c b/libgfortran/io/close.c index 7fa968faf62..1e075ea9608 100644 --- a/libgfortran/io/close.c +++ b/libgfortran/io/close.c @@ -102,8 +102,7 @@ st_close (st_parameter_close *clp) if (remove (u->filename)) generate_error (&clp->common, LIBERROR_OS, - "File cannot be deleted, possibly in use by" - " another process"); + "File cannot be deleted"); #else path = strdup (u->filename); #endif @@ -118,8 +117,7 @@ st_close (st_parameter_close *clp) { if (remove (path)) generate_error (&clp->common, LIBERROR_OS, - "File cannot be deleted, possibly in use by" - " another process"); + "File cannot be deleted"); free (path); } #endif