]> sjero.net Git - wget/commitdiff
[svn] Report exact command name alongside the "display name".
authorhniksic <devnull@localhost>
Sat, 21 May 2005 13:36:43 +0000 (06:36 -0700)
committerhniksic <devnull@localhost>
Sat, 21 May 2005 13:36:43 +0000 (06:36 -0700)
src/ChangeLog
src/init.c

index d4a3068270ba306e44081a566a6890f3b74bc0d4..e4e83e5c9f7513370fc8f701f58e1394f16aae7f 100644 (file)
@@ -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>
 
        * cookies.c (update_cookie_field): Explicitly cast -1 to time_t to
index 987b0d5922423f9b4bc4e9bbef95617a1887091b..8ea9d19e48b2061fb633a3f78ff2abfcf05bb1f5 100644 (file)
@@ -612,7 +612,7 @@ static int
 setval_internal (int comind, const char *com, const char *val)
 {
   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));
 }