mirror of
https://github.com/moparisthebest/wget
synced 2024-07-03 16:38:41 -04:00
[svn] Report exact command name alongside the "display name".
This commit is contained in:
parent
1aca2ff28e
commit
724e2f84be
@ -1,3 +1,8 @@
|
|||||||
|
2005-05-21 Hrvoje Niksic <hniksic@xemacs.org>
|
||||||
|
|
||||||
|
* init.c (setval_internal): Report exact command name alongside
|
||||||
|
the "display name".
|
||||||
|
|
||||||
2005-05-18 Hrvoje Niksic <hniksic@xemacs.org>
|
2005-05-18 Hrvoje Niksic <hniksic@xemacs.org>
|
||||||
|
|
||||||
* cookies.c (update_cookie_field): Explicitly cast -1 to time_t to
|
* cookies.c (update_cookie_field): Explicitly cast -1 to time_t to
|
||||||
|
@ -612,7 +612,7 @@ static int
|
|||||||
setval_internal (int comind, const char *com, const char *val)
|
setval_internal (int comind, const char *com, const char *val)
|
||||||
{
|
{
|
||||||
assert (0 <= comind && comind < countof (commands));
|
assert (0 <= comind && comind < countof (commands));
|
||||||
DEBUGP (("Setting %s (%d) to %s\n", com, comind, val));
|
DEBUGP (("Setting %s (%s) to %s\n", com, commands[comind].name, val));
|
||||||
return ((*commands[comind].action) (com, val, commands[comind].place));
|
return ((*commands[comind].action) (com, val, commands[comind].place));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user