aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarsten Loesing <karsten.loesing@gmx.net>2009-03-11 22:08:37 +0000
committerKarsten Loesing <karsten.loesing@gmx.net>2009-03-11 22:08:37 +0000
commit309080b6aa8a5dbb41a2a6327ac73493f7076cc1 (patch)
tree3d8b30ef412dc3f244c086d22db2e114c1987b0a
parent4e094ddc4d4a584c68467c7b4712cf6d9e40c875 (diff)
downloadtor-309080b6aa8a5dbb41a2a6327ac73493f7076cc1.tar.gz
tor-309080b6aa8a5dbb41a2a6327ac73493f7076cc1.zip
Make directory usage recording work again. Fixing bug introduced in r17009.
svn:r18924
-rw-r--r--ChangeLog1
-rw-r--r--src/or/directory.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 91ab990814..e9e5095ead 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -6,6 +6,7 @@ Changes in version 0.2.1.14-??? - 2009-03-??
- In tor-resolve, when the Tor client to use is specified by
<hostname>:<port>, actually use the specified port rather than
defaulting to 9050. Bugfix on 0.2.1.6-alpha.
+ - Make directory usage recording work again. Bugfix on 0.2.1.6-alpha.
Changes in version 0.2.1.13-alpha - 2009-03-09
diff --git a/src/or/directory.c b/src/or/directory.c
index efccb1ef42..e4a51b4b54 100644
--- a/src/or/directory.c
+++ b/src/or/directory.c
@@ -2581,7 +2581,7 @@ directory_handle_command_get(dir_connection_t *conn, const char *headers,
geoip_client_action_t act =
is_v3 ? GEOIP_CLIENT_NETWORKSTATUS : GEOIP_CLIENT_NETWORKSTATUS_V2;
struct in_addr in;
- if (!tor_inet_aton((TO_CONN(conn))->address, &in))
+ if (tor_inet_aton((TO_CONN(conn))->address, &in))
geoip_note_client_seen(act, ntohl(in.s_addr), time(NULL));
}
#endif