[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

[or-cvs] r8241: comment out an unused variable; nick, feel free to excise it (tor/trunk/src/or)



Author: arma
Date: 2006-08-27 02:58:30 -0400 (Sun, 27 Aug 2006)
New Revision: 8241

Modified:
   tor/trunk/src/or/eventdns.c
Log:
comment out an unused variable; nick, feel free to excise it further.


Modified: tor/trunk/src/or/eventdns.c
===================================================================
--- tor/trunk/src/or/eventdns.c	2006-08-27 06:55:48 UTC (rev 8240)
+++ tor/trunk/src/or/eventdns.c	2006-08-27 06:58:30 UTC (rev 8241)
@@ -891,7 +891,7 @@
 	// <label:name><u16:type><u16:class><u32:ttl><u16:len><data...>
 	for (i = 0; i < answers; ++i) {
 		u16 type, class;
-                int pre = j;
+                //int pre = j;
 
 		// XXX I'd be more comfortable if we actually checked the name
 		// here. -NM