Automated merge with file:/home/micah/devel/wget/eleven-repo-mentions

This commit is contained in:
Micah Cowan 2007-10-13 00:02:03 -07:00
commit afe38bb249
7 changed files with 20 additions and 4 deletions

View File

@ -1,3 +1,7 @@
2007-10-10 Micah Cowan <micah@cowan.name>
* wget.texi <Wgetrc Commands>: Fixed "doewnloads" typo.
2007-10-03 Micah Cowan <micah@cowan.name> 2007-10-03 Micah Cowan <micah@cowan.name>
* wget.texi <Wgetrc Commands>: Cleaned up alphabetization, * wget.texi <Wgetrc Commands>: Cleaned up alphabetization,

View File

@ -2659,7 +2659,7 @@ This command used to be named @code{login} prior to Wget 1.10.
Turn globbing on/off---the same as @samp{--glob} and @samp{--no-glob}. Turn globbing on/off---the same as @samp{--glob} and @samp{--no-glob}.
@item header = @var{string} @item header = @var{string}
Define a header for HTTP doewnloads, like using Define a header for HTTP downloads, like using
@samp{--header=@var{string}}. @samp{--header=@var{string}}.
@item html_extension = on/off @item html_extension = on/off

View File

@ -1,3 +1,13 @@
2007-10-10 Micah Cowan <micah@cowan.name>
* http-ntlm.c: Include openssl/opensslv.h explicitly, instead of
hoping it'll be included by accident in openssl/des.h.
2007-10-09 Gisle Vanem <gvanem@broadpark.no>
* mswindows.c: 'argc' and 'argv' in 'windows_main()' are no longer
needed. Hence simply the prototype. Free 'exec_name' at exit.
2007-10-08 Micah Cowan <micah@cowan.name> 2007-10-08 Micah Cowan <micah@cowan.name>
* http.c (http_loop): Add send_head_first conditional back * http.c (http_loop): Add send_head_first conditional back

View File

@ -42,6 +42,7 @@ so, delete this exception statement from your version. */
#include <openssl/des.h> #include <openssl/des.h>
#include <openssl/md4.h> #include <openssl/md4.h>
#include <openssl/opensslv.h>
#include "wget.h" #include "wget.h"
#include "utils.h" #include "utils.h"

View File

@ -708,7 +708,7 @@ main (int argc, char *const *argv)
#ifdef WINDOWS #ifdef WINDOWS
/* Drop extension (typically .EXE) from executable filename. */ /* Drop extension (typically .EXE) from executable filename. */
windows_main (&argc, (char **) argv, (char **) &exec_name); windows_main ((char **) &exec_name);
#endif #endif
/* Set option defaults; read the system wgetrc and ~/.wgetrc. */ /* Set option defaults; read the system wgetrc and ~/.wgetrc. */

View File

@ -73,7 +73,7 @@ xsleep (double seconds)
} }
void void
windows_main (int *argc, char **argv, char **exec_name) windows_main (char **exec_name)
{ {
char *p; char *p;
@ -87,6 +87,7 @@ windows_main (int *argc, char **argv, char **exec_name)
static void static void
ws_cleanup (void) ws_cleanup (void)
{ {
xfree ((char*)exec_name);
WSACleanup (); WSACleanup ();
} }

View File

@ -208,6 +208,6 @@ void ws_startup (void);
void ws_changetitle (const char *); void ws_changetitle (const char *);
void ws_percenttitle (double); void ws_percenttitle (double);
char *ws_mypath (void); char *ws_mypath (void);
void windows_main (int *, char **, char **); void windows_main (char **);
#endif /* MSWINDOWS_H */ #endif /* MSWINDOWS_H */