mirror of
https://github.com/moparisthebest/wget
synced 2024-07-03 16:38:41 -04:00
[svn] Doc fix.
This commit is contained in:
parent
4f19ac5494
commit
36a5d0b2fe
10
src/log.c
10
src/log.c
@ -553,7 +553,7 @@ log_init (const char *file, int appendp)
|
|||||||
logfp = fopen (file, appendp ? "a" : "w");
|
logfp = fopen (file, appendp ? "a" : "w");
|
||||||
if (!logfp)
|
if (!logfp)
|
||||||
{
|
{
|
||||||
perror (opt.lfilename);
|
fprintf (stderr, "%s: %s: %s\n", exec_name, file, strerror (errno));
|
||||||
exit (1);
|
exit (1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -567,16 +567,16 @@ log_init (const char *file, int appendp)
|
|||||||
easier on the user. */
|
easier on the user. */
|
||||||
logfp = stderr;
|
logfp = stderr;
|
||||||
|
|
||||||
/* If the output is a TTY, enable storing, which will make Wget
|
|
||||||
remember the last several printed messages, to be able to
|
|
||||||
dump them to a log file in case SIGHUP or SIGUSR1 is received
|
|
||||||
(or Ctrl+Break is pressed under Windows). */
|
|
||||||
if (1
|
if (1
|
||||||
#ifdef HAVE_ISATTY
|
#ifdef HAVE_ISATTY
|
||||||
&& isatty (fileno (logfp))
|
&& isatty (fileno (logfp))
|
||||||
#endif
|
#endif
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
|
/* If the output is a TTY, enable save context, i.e. store
|
||||||
|
the most recent several messages ("context") and dump
|
||||||
|
them to a log file in case SIGHUP or SIGUSR1 is received
|
||||||
|
(or Ctrl+Break is pressed under Windows). */
|
||||||
save_context_p = 1;
|
save_context_p = 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user