aboutsummaryrefslogtreecommitdiff
path: root/src/or/dirserv.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/or/dirserv.c')
-rw-r--r--src/or/dirserv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/dirserv.c b/src/or/dirserv.c
index dc7804b3b..0d9d433a1 100644
--- a/src/or/dirserv.c
+++ b/src/or/dirserv.c
@@ -678,8 +678,8 @@ size_t dirserv_get_directory(const char **directory, int deflate)
} else {
log(LOG_INFO,"Directory still clean, reusing.");
}
- *directory = deflate ? the_directory : the_directory_z;
- return deflate ? the_directory_len : the_directory_z_len;
+ *directory = deflate ? the_directory_z : the_directory;
+ return deflate ? the_directory_z_len : the_directory_len;
}
/**