diff --git a/ChangeLog b/ChangeLog
index 56ae073..51685ff 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,13 @@
2010-11-03 Mats Erik Andersson <[email protected]>
=20
+ * src/traceroute.c: Delete HOST. New strings HOSTNAME, ADDRSTR.
HOSTNAME nor ADDSTR are strings, they are variables. Also, when
adding variables that are global to the file, we write:
* src/traceroute.c (host): Deleted variable.
(hostname, addstr): New variables.
index f79e747..8226c71 100644
--- a/src/traceroute.c
+++ b/src/traceroute.c
@@ -47,6 +47,7 @@
#include <argp.h>
#include <icmp.h>
=20
+#include "xalloc.h"
Not mentioned in CL:
* src/traceroute.c: Include "xalloc.h".
Other than that, it is fine.