mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-12-06 19:41:15 +01:00
Fix .z suffix for intrumented download stats once more
svn:r15316
This commit is contained in:
+1
-1
@@ -2201,7 +2201,7 @@ note_client_request(int purpose, int compressed, size_t bytes)
|
||||
}
|
||||
if (kind) {
|
||||
key = tor_malloc(256);
|
||||
tor_snprintf(key, 256, "%s%s", kind, compressed?"":".z");
|
||||
tor_snprintf(key, 256, "%s%s", kind, compressed?".z":"");
|
||||
} else {
|
||||
key = tor_malloc(256);
|
||||
tor_snprintf(key, 256, "unknown purpose (%d)%s",
|
||||
|
||||
Reference in New Issue
Block a user