Skip to content
This repository has been archived by the owner. It is now read-only.
Permalink
Browse files
Fix some compilation warnings
  • Loading branch information
nmathewson committed May 18, 2015
1 parent 2308f91 commit d5e4a6343694574cebc9f9bd7ea83a168bdad3aa
Showing with 5 additions and 2 deletions.
  1. +2 −0 src/or/control.c
  2. +0 −1 src/or/rendclient.h
  3. +1 −1 src/or/rendcommon.h
  4. +2 −0 src/test/test_hs.c
@@ -2216,6 +2216,8 @@ getinfo_helper_liveness(control_connection_t *control_conn,
const char *question, char **answer,
const char **errmsg)
{
(void)control_conn;
(void)errmsg;
if (strcmp(question, "network-liveness") == 0) {
if (get_cached_network_liveness()) {
*answer = tor_strdup("up");
@@ -52,7 +52,6 @@ int rend_parse_service_authorization(const or_options_t *options,
rend_service_authorization_t *rend_client_lookup_service_authorization(
const char *onion_address);
void rend_service_authorization_free_all(void);
rend_data_t *rend_data_dup(const rend_data_t *request);

#endif

@@ -73,7 +73,7 @@ void rend_get_descriptor_id_bytes(char *descriptor_id_out,
const char *secret_id_part);
size_t rend_cache_get_total_allocation(void);

rend_data_t * rend_data_dup(const rend_data_t *data);
rend_data_t *rend_data_dup(const rend_data_t *data);
rend_data_t *rend_data_client_create(const char *onion_address,
const char *desc_id,
const char *cookie,
@@ -310,6 +310,8 @@ test_hs_rend_data(void *arg)
char client_cookie[REND_DESC_COOKIE_LEN];
time_t now = time(NULL);

(void)arg;

base32_decode(desc_id, sizeof(desc_id), STR_DESC_ID_BASE32,
REND_DESC_ID_V2_LEN_BASE32);
memset(client_cookie, 'e', sizeof(client_cookie));

0 comments on commit d5e4a63

Please sign in to comment.