]> sjero.net Git - wget/commitdiff
[svn] init.c (commands): Hack Kampbj?rn <hack@hackdata.com> discovered that
authordan <devnull@localhost>
Sat, 17 Feb 2001 05:26:34 +0000 (21:26 -0800)
committerdan <devnull@localhost>
Sat, 17 Feb 2001 05:26:34 +0000 (21:26 -0800)
"httpsproxy" had been inserted into commands[] out of alphabetical order,
causing "BUG: unknown command `httpuser'".

src/ChangeLog
src/init.c

index e89fee9374a3b6e7a19896aa0e851b9ded5b9ca7..2430194c039b01bea705808141a0731156a119d7 100644 (file)
@@ -1,3 +1,9 @@
+2001-02-16  Dan Harkless  <wget@harkless.org>
+
+       * init.c (commands): Hack Kampbjørn <hack@hackdata.com> discovered
+       that "httpsproxy" had been inserted into commands[] out of
+       alphabetical order, causing "BUG: unknown command `httpuser'".
+
 2001-02-13  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
 
        * ftp-ls.c (ftp_parse_ls): Added support of ST_MACOS (Unix-like
index 321f50d4bf7d63ada9e695b2f6f898c6e989acda..004bb7ae3e8cc790da1fbee10706c57e2840cac4 100644 (file)
@@ -125,8 +125,8 @@ static struct {
   { "httpkeepalive",   &opt.http_keep_alive,   cmd_boolean },
   { "httppasswd",      &opt.http_passwd,       cmd_string },
   { "httpproxy",       &opt.http_proxy,        cmd_string },
-  { "httpuser",                &opt.http_user,         cmd_string },
   { "httpsproxy",      &opt.https_proxy,       cmd_string },
+  { "httpuser",                &opt.http_user,         cmd_string },
   { "ignorelength",    &opt.ignore_length,     cmd_boolean },
   { "ignoretags",      &opt.ignore_tags,       cmd_vector },
   { "includedirectories", &opt.includes,       cmd_directory_vector },