]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Fix a reserved identifier that my scripts missed
authorNick Mathewson <nickm@torproject.org>
Mon, 15 Oct 2012 19:59:52 +0000 (15:59 -0400)
committerNick Mathewson <nickm@torproject.org>
Mon, 15 Oct 2012 20:01:26 +0000 (16:01 -0400)
My scripts missed it because it was in eventdns.c, which was in ext,
but it _was_ using one of our identifiers.  That's probably because
eventdns.c has drifted a bit since we forked it.

I'm not going to fix the other reserved identifiers in eventdns.c,
since that would make it drift even more.

src/ext/eventdns.c

index 768693aba63b81f1a63a470d3381fe36bcb65f8b..7e99f5562634338db97a89148a1ce2a9c1ffd339 100644 (file)
@@ -130,7 +130,7 @@ typedef int socklen_t;
 #define mm_realloc(x,y) tor_realloc((x),(y))
 #define mm_free(x) tor_free(x)
 #define mm_strdup(x) tor_strdup(x)
-#define _mm_free(x) _tor_free(x)
+#define _mm_free(x) tor_free_(x)
 
 #undef MIN
 #define MIN(a,b) ((a)<(b)?(a):(b))