]> sjero.net Git - wget/blobdiff - src/log.c
[svn] Allow unique_name to return the FILE argument unmodified.
[wget] / src / log.c
index e3e697b0b66d9614733920599e86bc09a9956ae4..1f829e493da2a2945d47ef99769bf3b933a1f3bf 100644 (file)
--- a/src/log.c
+++ b/src/log.c
@@ -29,15 +29,18 @@ so, delete this exception statement from your version.  */
 
 #include <config.h>
 
+/* This allows the architecture-specific .h files to specify the use
+   of stdargs regardless of __STDC__.  */
+#ifndef WGET_USE_STDARG
 /* Use stdarg only if the compiler supports ANSI C and stdarg.h is
    present.  We check for both because there are configurations where
    stdarg.h exists, but doesn't work. */
-#undef WGET_USE_STDARG
-#ifdef __STDC__
-# ifdef HAVE_STDARG_H
-#  define WGET_USE_STDARG
+# ifdef __STDC__
+#  ifdef HAVE_STDARG_H
+#   define WGET_USE_STDARG
+#  endif
 # endif
-#endif
+#endif /* not WGET_USE_STDARG */
 
 #include <stdio.h>
 #ifdef HAVE_STRING_H
@@ -657,7 +660,7 @@ static const char *redirect_request_signal_name;
 static void
 redirect_output (void)
 {
-  char *logfile = unique_name (DEFAULT_LOGFILE);
+  char *logfile = unique_name (DEFAULT_LOGFILE, 0);
   fprintf (stderr, _("\n%s received, redirecting output to `%s'.\n"),
           redirect_request_signal_name, logfile);
   logfp = fopen (logfile, "w");