mirror of
https://https.git.savannah.gnu.org/git/gnulib.git
synced 2026-09-01 02:34:55 +00:00
Comment changes.
This commit is contained in:
+2
-2
@@ -589,7 +589,7 @@ open_temp (const char *file_name, int flags, mode_t mode)
|
||||
int saved_errno;
|
||||
|
||||
block_fatal_signals ();
|
||||
fd = open (file_name, flags, mode);
|
||||
fd = open (file_name, flags, mode); /* actually open or open_safer */
|
||||
saved_errno = errno;
|
||||
if (fd >= 0)
|
||||
register_fd (fd);
|
||||
@@ -607,7 +607,7 @@ fopen_temp (const char *file_name, const char *mode)
|
||||
int saved_errno;
|
||||
|
||||
block_fatal_signals ();
|
||||
fp = fopen (file_name, mode);
|
||||
fp = fopen (file_name, mode); /* actually fopen or fopen_safer */
|
||||
saved_errno = errno;
|
||||
if (fp != NULL)
|
||||
{
|
||||
|
||||
+1
-1
@@ -36,7 +36,7 @@ extern "C" {
|
||||
|
||||
Also, open file descriptors need to be closed before the temporary files
|
||||
and the temporary directories can be removed, because only on Unix
|
||||
(excluding Cygwin) one can remove directories containing open files.
|
||||
(excluding Cygwin) can one remove directories containing open files.
|
||||
|
||||
This module provides support for temporary directories and temporary files
|
||||
inside these temporary directories. Temporary files without temporary
|
||||
|
||||
Reference in New Issue
Block a user