[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)
- To: or-cvs@xxxxxxxxxxxxx
 
- Subject: [or-cvs] r8241: comment out an unused variable; nick, feel free to excise it (tor/trunk/src/or)
 
- From: arma@xxxxxxxx
 
- Date: Sun, 27 Aug 2006 02:58:31 -0400 (EDT)
 
- Delivered-to: archiver@seul.org
 
- Delivered-to: or-cvs-outgoing@seul.org
 
- Delivered-to: or-cvs@seul.org
 
- Delivery-date: Sun, 27 Aug 2006 02:58:37 -0400
 
- Reply-to: or-talk@xxxxxxxxxxxxx
 
- Sender: owner-or-cvs@xxxxxxxxxxxxx
 
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