summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2007-08-17 21:46:34 +0000
committerNick Mathewson <nickm@torproject.org>2007-08-17 21:46:34 +0000
commit1f244d394354c8093ecf5a0029ae06578f74ad91 (patch)
tree95ee3a24d04d9e7632540f44cb536845f32f7a72
parentf8b3927e076465808bd31e0e06712fb155ccf125 (diff)
downloadtor-1f244d394354c8093ecf5a0029ae06578f74ad91.tar.gz
tor-1f244d394354c8093ecf5a0029ae06578f74ad91.zip
r14639@catbus: nickm | 2007-08-17 17:45:28 -0400
Compile without warnings on MinGW, even with --enable-gcc-warnings enabled. svn:r11157
-rw-r--r--src/common/compat.c2
-rw-r--r--src/common/compat.h6
-rw-r--r--src/or/connection.c2
-rw-r--r--src/or/eventdns.c4
-rw-r--r--src/or/eventdns_tor.h4
5 files changed, 11 insertions, 7 deletions
diff --git a/src/common/compat.c b/src/common/compat.c
index ebddce74b1..fa7b8c2b3d 100644
--- a/src/common/compat.c
+++ b/src/common/compat.c
@@ -1671,7 +1671,7 @@ tor_cond_new(void)
}
/** Release all resources held by <b>cond</b>. */
void
-tor_conf_free(tor_cond_t *cond)
+tor_cond_free(tor_cond_t *cond)
{
tor_assert(cond);
if (pthread_cond_destroy(&cond->cond)) {
diff --git a/src/common/compat.h b/src/common/compat.h
index 647e64c4b7..6cf006bb3c 100644
--- a/src/common/compat.h
+++ b/src/common/compat.h
@@ -301,8 +301,8 @@ typedef uint16_t sa_family_t;
#ifndef _MSC_VER
/* Apparently, MSVC doesn't define s6_addr16 or s6_addr32. How dumb. */
/* XXXX020 detect with autoconf. */
-#define S6_ADDR16(x) ((x).s6_addr16)
-#define S6_ADDR32(x) ((x).s6_addr32)
+#define S6_ADDR16(x) ((uint16_t*)(x).s6_addr16)
+#define S6_ADDR32(x) ((uint32_t*)(x).s6_addr32)
#else
#define S6_ADDR16(x) ((uint16_t*)((char*)&(x).s6_addr))
#define S6_ADDR32(x) ((uint32_t*)((char*)&(x).s6_addr))
@@ -481,7 +481,7 @@ unsigned long tor_get_thread_id(void);
#ifdef TOR_IS_MULTITHREADED
typedef struct tor_cond_t tor_cond_t;
tor_cond_t *tor_cond_new(void);
-void tor_conf_free(tor_cond_t *cond);
+void tor_cond_free(tor_cond_t *cond);
int tor_cond_wait(tor_cond_t *cond, tor_mutex_t *mutex);
void tor_cond_signal_one(tor_cond_t *cond);
void tor_cond_signal_all(tor_cond_t *cond);
diff --git a/src/or/connection.c b/src/or/connection.c
index dbcc14c9b0..b67cd1e2cc 100644
--- a/src/or/connection.c
+++ b/src/or/connection.c
@@ -705,6 +705,8 @@ create_unix_sockaddr(const char *listenaddress, char **readable_address)
static struct sockaddr *
create_unix_sockaddr(const char *listenaddress, char **readable_address)
{
+ (void)listenaddress;
+ (void)readable_address;
log_fn(LOG_ERR, LD_BUG,
"Unix domain sockets not supported, yet we tried to create one.");
assert(0);
diff --git a/src/or/eventdns.c b/src/or/eventdns.c
index 1fb458118e..5074bcd541 100644
--- a/src/or/eventdns.c
+++ b/src/or/eventdns.c
@@ -122,9 +122,7 @@ typedef int socklen_t;
#include <stdio.h>
#endif
-/* XXXX020 These are for debugging possible memory leaks. */
-#include "util.h"
-#include "compat.h"
+/*XXXX020 for debugging possible memory leaks. */
#define malloc(x) tor_malloc(x)
#define realloc(x,y) tor_realloc((x),(y))
#define free(x) tor_free(x)
diff --git a/src/or/eventdns_tor.h b/src/or/eventdns_tor.h
index 03807065fc..d8377246da 100644
--- a/src/or/eventdns_tor.h
+++ b/src/or/eventdns_tor.h
@@ -17,3 +17,7 @@ typedef unsigned char u_char;
#define WIN32
#endif
+/* XXXX020 These are for debugging possible memory leaks. */
+#include "util.h"
+#include "compat.h"
+