Преглед на файлове

Fix a reserved identifier that my scripts missed

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.
Nick Mathewson преди 13 години
родител
ревизия
7e4c91e880
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      src/ext/eventdns.c

+ 1 - 1
src/ext/eventdns.c

@@ -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))